[求助]一個C++的
我见到一个定好的类。不知道 static void ChangeCountry( char * );static void GetCountry( char * );怎么用
谁帮我说个例子啊,谢了
补一下主程序
class Person {
private:
char Name[20];
int Age;
char Sex;
static char Country[20];
public:
Person ( char *, int, char );
Person ( );
Person ( Person &obj );
~Person( );
void Register( char *, int, char );
void GetName( char * );
int GetAge( );
char GetSex( );
static void ChangeCountry( char * );
static void GetCountry( char * );
} ;
char Person::Country[20]=“China” ;