📄 mycppclasses.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -