具体代码如下:
bool operator!=(const _list_node_iterator & node2){//必须const?
return this->node != node2.node;
}
- 在linux平台编译完全没问题,在vs2019上
报C4716错误,缺少返回值错误
错误出在注释结尾的?上,此?号为中文符号,改为英文符号?即可
具体代码如下:
bool operator!=(const _list_node_iterator & node2){//必须const?
return this->node != node2.node;
}
报C4716错误,缺少返回值错误
错误出在注释结尾的?上,此?号为中文符号,改为英文符号?即可