这是我的功能:
friend std::ostream& operator<< (std::ostream& stream, const Path& path) {
std::map<double, glm::vec3>::iterator iter;
for (iter = path.points.begin(); iter != path.points.end(); iter++){
stream << "test" << "\n";
}
}
这是我的错误:
Error 1 error C2679: binary '=' : no operator found which takes a right-hand operand of type 'std::_Tree_const_iterator<std::_Tree_val<std::_Tree_simple_types<std::pair<const _Kty,_Ty>>>>' (or there is no acceptable conversion) c:\users\adam\skydrive\documents\proj\ray\ray\path.h 22 1 ray
我之前从未遇到过这种问题。说实话,我不知道从哪里开始。我尝试了一些获取迭代器的方法,包括typedef方法,但同样的问题仍然存在。
有什么建议吗?
答案 0 :(得分:6)
Path
为const
,因此您使用的是const
版.begin()
。但是你试图将它分配给一个可变的迭代器。请尝试将其声明为Path::const_iterator
。
答案 1 :(得分:2)
更改此声明
std::map<double, glm::vec3>::iterator iter;
到
std::map<double, glm::vec3>::const_iterator iter;