⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit.h

📁 浙江工业大学C++数据结构课程设计的练习作品 有一定的难度 有英文原题说明(老外授课)大家可以先看题自己做再参考我的程序
💻 H
字号:
#ifndef UNIT_H
#define UNIT_H
#include "list.h"

//#include

class Unit {
private:
	char * name;
	char * code;
	
public:
	Unit(char*,char*);
	Unit();
	~Unit();
	void setName(char *);
	void setCode(char *);
	char* getName() const;
	char* getCode() const;
	void addStudent(Student);
	//int getCount();

	list h;
	//void dispList() const;
};

#endif

⌨️ 快捷键说明

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