作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经像这样为 +=operator 使用了运算符重载
CRoute& CRoute::operator+=(string name ){
CWaypoint *p=this->m_pWpDatabase->getPointerToWp(name);
if(p!=NULL){
this->addWaypoint(name);
}
else{
cout<<" Waypoint not found in DB "<<endl;
}
return *this;
}
现在我想做同样的操作 += 将 poi 添加到我的路线,我正在使用语法CRoute& operator+=(string namepoi);
但我收到错误消息,因为“CRoute& CRoute::operator+=(std::string)”无法重载有人可以帮忙吗??
最佳答案
您建议的运算符重载函数的函数签名与当前存在的函数签名冲突。因此,如果您想为 poi
创建运算符重载,为什么不能传递 poi 对象
而不是它的名称?
关于c++ - CPOI 和 CWaypoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34253669/
我已经像这样为 +=operator 使用了运算符重载 CRoute& CRoute::operator+=(string name ){ CWaypoint *p=this->m_pWpDataba
我是一名优秀的程序员,十分优秀!