65,176
社区成员




class String
{public:
String(){p=NULL;}
String(char *str);
friend bool operator>(String &st1,String &st2)
{if(strcmp(st1.p,st2.p)>0) //错误1:error C2248: 'p' : cannot access private
// member declared in class 'String'
return true;
else return false;
}
void display();
private: char *p;//错误2:see declaration of 'p'
};