mycppclasses.h

来自「易语言IDE源代码」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef __MY_CPP_CLASSES_H__
#define __MY_CPP_CLASSES_H__


class CStudent
{
public:
	CStudent();
	CStudent(const char* name, int age);
	const char* GetName() const;
	void SetName(const char* name);
	int GetAge() const;
	void SetAge(int age);

private:
	char _name[80];
	int  _age;
};


#endif //__MY_CPP_CLASSES_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?