制作了我自己的字符串类(即显然是作业),我的两个操作符出现了奇怪的语法错误。我的相等和添加运算符声称我有太多参数(即在我的.h文件中),但后来声称该方法甚至不属于我的.cpp文件中的类!
我甚至将相等运算符作为朋友,但是intellisense仍然给出了相同的错误消息。
有谁知道我做错了什么?
friend bool operator==(String const & left, String const & right);
string.h中
bool operator==(String const & left, String const & right);
String const operator+(String const & lhs, String const & rhs);
string.cpp
bool String::operator==(String const & left, String const &right)
{
return !strcmp(left.mStr, right.mStr);
}
String const String::operator+(String const & lhs, String const & rhs)
{
//Find the length of the left and right hand sides of the add operator
int lengthLhs = strlen(lhs.mStr);
int lengthRhs = strlen(rhs.mStr);
//Allocate space for the left and right hand sides (i.e. plus the null)
char * buffer = new char[lhs.mStr + rhs.mStr + 1];
//Copy left hand side into buffer
strcpy(buffer, lhs.mStr);
//Concatenate right hand side into buffer
strcat(buffer, rhs.mStr);
//Create new string
String newString(buffer);
//Delete buffer
delete [] buffer;
return newString;
}
答案 0 :(得分:4)
您需要在课堂外定义operator==
:
bool String::operator==(String const & left, String const &right)
^^^^^^^^ REMOVE THIS
如果operator+
也是朋友,那么它也需要被定义为自由函数(即在课外)。