如果问题很愚蠢,请耐心等待。
以下内容在头文件中定义:
typedef char NAME_T[40];
struct NAME_MAPPING_T
{
NAME_T englishName;
NAME_T frenchName;
};
typedef std::vector<NAME_MAPPING_T> NAMES_DATABASE_T;
后来需要找到一个特定的英文名字:
const NAMES_DATABASE_T *wordsDb;
string str;
std::find_if( wordsDb->begin(),
wordsDb->end(),
[str](const NAME_MAPPING_T &m) -> bool { return strncmp(m.englishName, str.c_str(), sizeof(m.englishName)) == 0; } );
这段代码(我诚实地复制粘贴)编译,但如果我想检查find_if()返回的值,如下所示:
NAMES_DATABASE_T::iterator it;
it = std::find_if(blah ..)
代码无法编译!
实际上是这条线 it = std :: find_if(...) 将返回错误:
error C2679: binary '=' : no operator found which takes a right-hand operand of type 'std::_Vector_const_iterator<_Myvec>' (or there is no acceptable conversion)
有什么问题?
感谢您的时间。
答案 0 :(得分:5)
const NAMES_DATABASE_T *wordsDb;
你的wordsDb
是const,因此wordsDb->begin()
返回一个const迭代器,因此find_if
也返回一个const迭代器。您试图将该const迭代器分配给非const NAMES_DATABASE_T::iterator it
,因此错误。
您可以使用NAMES_DATABASE_T::const_iterator
来获取const迭代器。除非有一些罕见的情况需要,否则你应该使用std::string
而不是那些char缓冲区。