gpt4 book ai didi

c++ - CPOI 和 CWaypoint

转载 作者:行者123 更新时间:2023-11-30 05:34:22 26 4
gpt4 key购买 nike

我已经像这样为 +=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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com