我想重载 == 运算符来比较 2 个类对象。但这给了我一个错误。
代码:
#include <iostream>
using namespace std;
class Point
{
private:
int x;
int y;
public:
Point(int x, int y)
{
this->x = x;
this->y = y;
}
void PrintInfo()
{
printf("Точка имеет координаты [%d;%d]\n", x, y);
}
bool operator == (const Point& object)
{
return (x == object.x) && (y == object.y);
}
};
int main()
{
setlocale(LC_ALL, "ru");
Point a(5, 1);
Point b(9, 4);
bool result = a == b;
cout << result << endl;
}
错误本身:
我希望得到一些帮助并解释为什么会出现此错误:) 感谢您的关注!