boost :: associative_property_map()编译错误

时间:2014-02-03 04:09:06

标签: c++ boost map boost-graph

在boost网站上使用此链接,我可以编译代码here。甚至得到答案(例子)。但是当我通过在类中定义来做同样的事情时,我得到如下错误:

#include < as usual in the code >

class Test{

 std::map<std::string, std::string> name2address;
 boost::const_associative_property_map< std::map<std::string, std::string> >
                  address_map(name2address);


};

错误如下:

error: ‘name2address’ is not a type

我必须使用typedef和typename来正确编译代码。但我仍然无法使用(插入或foo功能(如示例中所示)

请帮忙,这是使用typedefs的代码

class Test{
  typedef typename std::map<std::string, std::string> name2address;
  boost::const_associative_property_map< std::map<std::string, std::string> >
                address_map(name2address);

 };

我必须将这个关联属性映射传递给另一个类,我可以像往常一样使用get和put函数。我该怎么做?

1 个答案:

答案 0 :(得分:1)

此:

boost::const_associative_property_map< std::map<std::string, std::string> > address_map(name2address);

声明一个变量并通过使用name2address调用构造函数来初始化它。你不能在类声明中这样做,你必须在类ctor中执行它:

class Test{

 std::map<std::string, std::string> name2address;
 boost::const_associative_property_map< std::map<std::string, std::string> >
                  address_map;
public:
 Test() : address_map(name2address) {}
};

这应解决编译问题,但我不确定它是最好的布局,具体取决于你之后如何使用Test。