C++类的实现
声明学生类 Student
定义以下 private成员: unsigned int studentID; char*name=new char[20]; char*sex=new char[10]; unsigned int age; float mathScore; float englishScore; float CPPScore;
定义以下public成员:
①构造函数,带参数如下 Student(unsigned int ID, const char *newName, const char *newSex, unsigned int newAge,float newMathScore,float newEnglishScore,float newCPPScore)将各形式参数赋值给相应的私有成员变量,注意字符串用strcpy。 ②析构函数,将name和sex的空间释放 ③unsigned int getSutdentI函数,返回studentID; char*getName0函数,返回 name;char*getSex()
C++类的实现最先出现在Python成神之路。
共有 0 条评论