我需要做一些逻辑比较并返回一个布尔答案。
以下是 .cpp 文件中的代码:
bool MyString::operator==(const MyString& other)const
{
if(other.Size == this.Size)
{
for(int i = 0; i < this.Size+1; i++)
{
if(this[i] == other[i])
return true;
}
}
else
return false;
}
这是从 main.cpp 文件中调用的内容:
if (String1 == String4)
{
String3.Print ();
}
else
{
String4.Print ();
}
这是我得到的编译错误:
error: request for member `Size` in `this`, which is of non-class type `const MyString* const`
error: no match for `operator[]` in `other[i]`