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

📄 lesson.h

📁 学生管理类,很好的
💻 H
字号:
// Lesson.h: interface for the Lesson class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LESSON_H__BA959420_C712_4139_99B6_B3170D25ECA0__INCLUDED_)
#define AFX_LESSON_H__BA959420_C712_4139_99B6_B3170D25ECA0__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class lesson_node
{
	friend class Lesson;
public:
	lesson_node(int ban,int teac){banNum=ban;teacNum=teac;}
private:
	int banNum;
	int teacNum;
	lesson_node *next;
};



class Lesson  
{
public:
	Lesson();
	virtual ~Lesson();
	Lesson();
	void chgLesson();
	void creatLesson();
	void showLesson();	
protected:
	lesson_node *first,*last,*iterator;	

};

#endif // !defined(AFX_LESSON_H__BA959420_C712_4139_99B6_B3170D25ECA0__INCLUDED_)

⌨️ 快捷键说明

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