#include <iostream> using namespace std; class CPerson { public: void Print(); private: CPerson(); private: int age; char *name; }; CPerson::CPerson() { } void CPerson::Print() { cout<<"name="<<name<<",age="<<age<<endl; } void main() { CPerson ps(23,"张三"); ps.Print(); }
说是有三大错误 但是怎么改都不行TAT 上面是给出的代码。。。
相关分类