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成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/4375.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>