我刚刚注意到我无法在 boost 多索引容器元素中进行更改。这是真的?(基于以下简化代码)查看“更新”功能:
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/random_access_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/member.hpp>
namespace sim_mob
{
enum TrafficColor
{
Red =1, ///< Stop, do not go beyond the stop line.
Amber = 2, ///< Slow-down, prepare to stop before the stop line.
Green = 3, ///< Proceed either in the forward, left, or right direction.
FlashingRed = 4, ///future use
FlashingAmber = 5, ///future use
FlashingGreen = 6 ///future use
};
//Forward declarations
class Link
{
public:
int aa;
};
//////////////some bundling ///////////////////
using namespace ::boost;
using namespace ::boost::multi_index;
typedef struct
{
sim_mob::Link *LinkTo;
sim_mob::Link *LinkFrom;
// ColorSequence colorSequence;
TrafficColor currColor;
} linkToLink;
typedef multi_index_container<
linkToLink,
indexed_by< // index
random_access<>,//0
ordered_non_unique< member<linkToLink,sim_mob::Link *, &linkToLink::LinkTo> >, // 1
ordered_non_unique< member<linkToLink,sim_mob::Link *, &linkToLink::LinkFrom> > // 2
>
> links_map;
class Phase
{
public:
typedef links_map::nth_index_iterator<1>::type LinkTo_Iterator;
Phase(double CycleLenght,std::size_t start, std::size_t percent): cycleLength(CycleLenght),startPecentage(start),percentage(percent){
};
void update(double lapse)
{
links_map_[0].currColor = Red;
}
std::string name;
private:
sim_mob::links_map links_map_;
};
}//namespace
int main()
{
sim_mob::Phase F(100,70,30);
}
无需通过整个程序。请注意,在更新方法中,我收到此错误: multiIndex$ c++ exp2.cpp exp2.cpp: In member function 'void sim_mob::Phase::update(double)': exp2.cpp:69:29: error : 在只读对象中分配成员 'sim_mob::linkToLink::currColor'
我刚刚在boost 教程 中读到迭代器只授予 const 访问权限。我该如何解决这个问题?谢谢您的帮助