- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个颜色类。
我想创建一个 boost::multi_index_container使用颜色 ID 和颜色位置(在渐变类中)作为键。
为了保持代码更具可读性,我将 boost 实现封装在我的 IndexedColorSet
类中。
我想检索按位置排序的颜色。为此,我创建了一个 getStartEndPositionIterators
方法,该方法返回按位置排序的 multi_index_container 的开始和结束迭代器。
我的问题是结束迭代器似乎不能正常工作。如果我创建一个循环来打印所有迭代器从开始到结束的位置,它们会被正确打印,但是当我到达结束迭代器时,它会在最后存储的值和无效值之间无限循环。
如何检索右结束迭代器?我做错了什么?
使用 boost 1.58.0 和 gcc 5.2.1。
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/member.hpp>
#include <utility>
#include <iostream>
//////////////////////////////////////////////////////////////
/// Class that must be inserted into multi_index_container. //
//////////////////////////////////////////////////////////////
class Color {
public:
double red;
double green;
double blue;
double alpha;
};
//////////////////////////////////////////////////////
/// Class that implements the multi_index_container //
/// using ordering by id and by position. //
//////////////////////////////////////////////////////
class IndexedColorSet {
public:
// Class that wil be used as multi_index_container template parameter.
class IndexedColor {
public:
int id;
double position;
Color color;
IndexedColor() {}
IndexedColor(int id, double position, const Color &color) :
id(id), position(position), color(color) {}
};
// typedef for multi_index_container iterator
typedef ::boost::multi_index::detail::bidir_node_iterator<boost::multi_index::detail::ordered_index_node<boost::multi_index::detail::index_node_base<IndexedColor, std::allocator<IndexedColor> > > > PositionIterator;
public:
void insertColor(int id, double position, const Color &color);
// Retrieve begin and end iterator using position as index
std::pair<const PositionIterator&, const PositionIterator&> getStartEndPositionIterators() const;
private:
// Tags
struct id{};
struct position{};
// Container creation.
// It creates an ordered_unique index using id
// and a ordered_not_unique index using position
typedef ::boost::multi_index_container<
IndexedColor,
::boost::multi_index::indexed_by<
::boost::multi_index::ordered_unique<
::boost::multi_index::tag<id>,
BOOST_MULTI_INDEX_MEMBER(IndexedColor,int,id)
>,
::boost::multi_index::ordered_non_unique<
::boost::multi_index::tag<position>,
BOOST_MULTI_INDEX_MEMBER(IndexedColor,double,position)
>
>
> PrivateIndexedColorSet;
private:
PrivateIndexedColorSet m_set;
};
// Insert a color associated to id and position.
void IndexedColorSet::insertColor(int id, double position, const Color &color) {
m_set.insert(IndexedColor(id, position, color));
}
// Retrieve a std::pair containing begin and end iterator if multi_index_container
// using the position as key.
std::pair<const IndexedColorSet::PositionIterator&, const IndexedColorSet::PositionIterator&> IndexedColorSet::getStartEndPositionIterators() const {
const auto& positionSet = ::boost::multi_index::get<position>(m_set);
const auto& beginIt = positionSet.begin();
const auto& endIt = positionSet.end();
return std::pair<const PositionIterator&, const PositionIterator&>(beginIt, endIt);
}
int main()
{
IndexedColorSet set;
// Populate the set
int id1 = 1;
int id2 = 2;
int id3 = 3;
double position1 = 0.4;
double position2 = 0.6;
double position3 = 0.3;
Color color1{0.1, 0.3, 0.4, 0.5};
Color color2{0.2, 0.4, 0.5, 0.6};
Color color3{0.3, 0.4, 0.5, 0.6};
set.insertColor(id1, position1, color1);
set.insertColor(id2, position2, color2);
set.insertColor(id3, position3, color3);
// Retrieve ordered position iterators
auto iterators = set.getStartEndPositionIterators();
// Testing that are ordered
// I should obtain
// 0.3
// 0.4
// 0.6
//
// Instead I obtain
// 0.3
// 0.4
// 0.6
// 0
// 0.6
// 0
// 0.6
// 0
// 0.6
// 0... and so on
for (auto it = iterators.first; it != iterators.second; ++it) {
std::cout << it->position << std::endl;
}
return 0;
}
最佳答案
问题是 getStartEndPositionIterators
当您想要返回迭代器本身时,返回一对或引用给迭代器(引用指的是 getStartEndPositionIterators
中的对象,一旦成员函数退出就变得无效):
std::pair<PositionIterator,PositionIterator> getStartEndPositionIterators() const;
我已经稍微清理了你的代码:特别是你获取 PositionIterator
类型的方式。绝对没有记录,您可以按照如下所示的合法方式进行。
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/member.hpp>
#include <utility>
#include <iostream>
//////////////////////////////////////////////////////////////
/// Class that must be inserted into multi_index_container. //
//////////////////////////////////////////////////////////////
class Color {
public:
double red;
double green;
double blue;
double alpha;
};
//////////////////////////////////////////////////////
/// Class that implements the multi_index_container //
/// using ordering by id and by position. //
//////////////////////////////////////////////////////
class IndexedColorSet {
public:
// Class that wil be used as multi_index_container template parameter.
class IndexedColor {
public:
int id;
double position;
Color color;
IndexedColor() {}
IndexedColor(int id, double position, const Color &color) :
id(id), position(position), color(color) {}
};
private:
// Tags
struct id{};
struct position{};
// Container creation.
// It creates an ordered_unique index using id
// and a ordered_not_unique index using position
typedef ::boost::multi_index_container<
IndexedColor,
::boost::multi_index::indexed_by<
::boost::multi_index::ordered_unique<
::boost::multi_index::tag<id>,
BOOST_MULTI_INDEX_MEMBER(IndexedColor,int,id)
>,
::boost::multi_index::ordered_non_unique<
::boost::multi_index::tag<position>,
BOOST_MULTI_INDEX_MEMBER(IndexedColor,double,position)
>
>
> PrivateIndexedColorSet;
public:
void insertColor(int id, double position, const Color &color);
// Retrieve begin and end iterator using position as index
typedef PrivateIndexedColorSet::index<position>::type::iterator PositionIterator;
std::pair<PositionIterator,PositionIterator> getStartEndPositionIterators() const;
private:
PrivateIndexedColorSet m_set;
};
// Insert a color associated to id and position.
void IndexedColorSet::insertColor(int id, double position, const Color &color) {
m_set.insert(IndexedColor(id, position, color));
}
// Retrieve a std::pair containing begin and end iterator if multi_index_container
// using the position as key.
std::pair<
IndexedColorSet::PositionIterator,
IndexedColorSet::PositionIterator>
IndexedColorSet::getStartEndPositionIterators() const {
return std::make_pair(
m_set.get<position>().begin(),
m_set.get<position>().end());
}
int main()
{
IndexedColorSet set;
// Populate the set
int id1 = 1;
int id2 = 2;
int id3 = 3;
double position1 = 0.4;
double position2 = 0.6;
double position3 = 0.3;
Color color1{0.1, 0.3, 0.4, 0.5};
Color color2{0.2, 0.4, 0.5, 0.6};
Color color3{0.3, 0.4, 0.5, 0.6};
set.insertColor(id1, position1, color1);
set.insertColor(id2, position2, color2);
set.insertColor(id3, position3, color3);
// Retrieve ordered position iterators
auto iterators = set.getStartEndPositionIterators();
// Testing that are ordered
// I should obtain
// 0.3
// 0.4
// 0.6
for (auto it = iterators.first; it != iterators.second; ++it) {
std::cout << it->position << std::endl;
}
return 0;
}
关于c++ - boost::multi_index_container:检索结束迭代器时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33617352/
我正在编写一个类,我想知道哪一对方法更适合描述流程周期: start() -> stop() start() -> end() start() -> finish() 基本上这些方法将在执行任务之前和
对于 Android 小部件类名称是否应以“View”、“Layout”或两者都不结尾,是否存在模式或命名约定? 最佳答案 如果该类扩展了 View(或在其层次结构中扩展了 View),那么它应该以“
我正在尝试找到一个插件,该插件将使用 Verilog 突出显示匹配的开始/结束语句。 VIM 让它与花括号/括号一起工作,但它不能与它的开始/结束一起工作。我希望 VIM 突出显示正确的开始到正确的结
给出以下代码: % Generate some random data n = 10; A = cell(n, 1); for i=1:n A{i} = timeseries; A{i
我需要知道是否可以检测输入何时开始聚焦以及何时结束焦点 HTML 代码: JQuery 代码(仅示例我如何需要它): $('.datas').on('focusStart', alert("fo
所以我一直在思考一款游戏的想法,一款需要穿越时空的游戏。因此,我编写了一个 JFrame 来显示螺旋的 .gif,但它并没有在对话框显示时结束,而是保留在后台。我可以解决这个问题吗? import j
给出以下使用多线程的 Java 示例: import java.util.concurrent.*; public class SquareCalculator { private Ex
好吧,我有一个 do-while 循环,应该在使用点击“q”时结束,但它给了我错误消息,请帮忙。 package Assignments; import java.util.*; public cla
我如何有选择地匹配开始 ^或结束 $正则表达式中的一行? 例如: /(?\\1', $str); 我的字符串开头和结尾处的粗体边缘情况没有被匹配。我在使用其他变体时遇到的一些极端情况包括字符串内匹配、
我试图让程序在总数达到 10 时结束,但由于某种原因,我的 while 循环在达到 10 时继续计数。一旦回答了 10 个问题,我就有 int 百分比来查找百分比。 import java.util.
jQuery 中的 end() 函数将元素集恢复到上次破坏性更改之前的状态,因此我可以看到它应该如何使用,但我已经看到了一些代码示例,例如:on alistapart (可能来自旧版本的 jQuery
这个问题在这里已经有了答案: How to check if a string "StartsWith" another string? (18 个答案) 关闭 9 年前。 var file =
我正在尝试在 travis 上设置两个数据库,但它只是在 before_install 声明的中途停止: (END) No output has been received in the last 1
我创建了一个简单的存储过程,它循环遍历一个表的行并将它们插入到另一个表中。由于某种原因,END WHILE 循环抛出缺少分号错误。所有代码对我来说都是正确的,并且所有分隔符都设置正确。我只是不明白为什
您好,我正在使用 AVSpeechSynthesizer 和 AVSpeechUtterance 构建一个 iOS 7 应用程序,我想弄清楚合成何时完成。更具体地说,我想在合成结束时更改播放/暂停按钮
这是我的代码,我试图在响应后显示警报。但没有显示操作系统警报 string filepath = ConfigurationManager.AppSettings["USPPath"].ToStri
我想创建一个循环,在提供的时间段、第一天和最后一天返回每个月(考虑到月份在第 28-31 天结束):(“function_to_increase_month”尚未定义) for beg in pd.d
我目前正在用 Python 3.6 为一个骰子游戏编写代码,我知道我的编码在这方面有点不对劲,但是,我真的只是想知道如何开始我的 while 循环。游戏说明如下…… 人类玩家与计算机对战。 玩家 1
所以我已经了解了如何打开 fragment。这是我的困境。我的 view 旁边有一个元素列表(元素周期表元素)。当您选择一个元素时,它会显示它的信息。 我的问题是我需要能够从(我们称之为详细信息 fr
我想检测用户何时停止滚动页面/元素。这可能很棘手,因为最近对 OSX 滚动行为的增强创造了这种新的惯性效应。是否触发了事件? 我能想到的唯一其他解决方案是在页面/元素的滚动位置不再改变时使用间隔来拾取
我是一名优秀的程序员,十分优秀!