定义一个学生类Student,包含三个属性(学号,姓名,成绩)均为私有的,分别给这三个属性定义两个成员函数,一个设置它的值,另一个获得它的值。然后在main函数中通过对象调用成员函数。

  • Post author:
  • Post category:其他


#include<iostream>
#include <string.h>
using namespace std;
class student
{
public:
	void Init()
	{
		cout << number << " " << score << " " << name;
	}
	void GetN(int n) { number=n; }
	void GetS(int s) { score=s; }
	void GetA(char a[]) { strcpy_s(name, a); }


private:
	int number, score;
	char name[50];
};

int main()
{
	char a[9] = { "小红" };
	student stu;
	stu.GetN(10);
	stu.GetS(100);
	stu.GetA(a);
	stu.Init();
	return 0;
}



版权声明:本文为Karon_R原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。