gpt4 book ai didi

c++ - 错误 : passing 'const T' as 'this' argument of 'bool T::operator<(T)' discards qualifiers

转载 作者:可可西里 更新时间:2023-11-01 16:27:30 26 4
gpt4 key购买 nike

#include <iostream>
#include <vector>
#include <algorithm>
class MyData
{
public:
int m_iData;
bool operator<(MyData rhs) { return m_iData < rhs.m_iData; }
};

int main ()
{
std:: vector <MyData> myvector(2, MyData() );
myvector[0].m_iData=2; myvector[1].m_iData=4;

std::sort(myvector.begin(), myvector.end());
}

尝试编译这个给出:

error: passing 'const MyData' as 'this' argument of 'bool MyData::operator<(MyData)'
discards qualifiers

最佳答案

比较运算符将在类实例的常量引用上调用,因此必须将其声明为常量成员函数。

通过 const-reference 而不是通过值传递参数也是一种很好的做法,尽管它对您的简单类没有太大影响:

bool operator<(const MyData & rhs) const { return m_iData < rhs.m_iData; }
// ^^^^^^^^^^^^^^ ^^^^^
// if you like mandatory

通常强烈建议声明所有 成员函数常量,它们不会改变您的对象。这不仅传达了您的意图和设计,而且也不可能在常量对象或引用上使用这些函数。

关于c++ - 错误 : passing 'const T' as 'this' argument of 'bool T::operator<(T)' discards qualifiers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7869606/

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