我有一张地图,它将一对两个类映射到一个简单的字符串。 “FirstCollection”和“SecondCollection”是类,“myCollecttion”是其中之一的对象。 但是当迭代地图时,我遇到了编译错误:
错误:对'(const std :: basic_string)()'
的调用不匹配typedef std::map <
std::pair < Collection, Envelope::Envelope >
, std::string > NameMap;
NameMap globalNameMap = map_list_of
( std::make_pair ( FirstCollection, Envelope::A ), "Something")
( std::make_pair ( SecondCollection, Envelope::B ), "Another thing")
NameMap::const_iterator iter
= globalNameMap.find( std::make_pair ( myCollection, myEnvelope ));
if ( iter == globalNameMap.end() )
{
parent->setName("anything");
} else {
parent->setName(iter->second());
}
此行中的错误:parent->setName(iter->second());
有什么建议吗?
答案 0 :(得分:6)
iter->second
是一个成员变量而不是一个函数。删除括号:parent->setName(iter->second);
。