public:
person(const char *s, float a)
{
strcpy(name, s);
age = a;
}
person & person :: greater(person & x)
{
if(x.age >= age)
return x;
else
return *this;
}
我在 eclipse IDE 上编译程序时出现此错误
“错误:成员'greater'上的额外资格'person ::' [-f宽容]“
可能是什么原因?