📄 application1.h
字号:
#ifndef Application_H
#define Application_H
#include "StudentInfo.h"
#include "ListNode.h"
#include "LinkedList.h"
class Application
{
private:
LinkedList<Student> list;
void Insert();
void Delete();
void Find();
void Update();
void Sort();
void Print();
void Analyze();
void Save();
void Load();
public:
Application();
~Application();
void PrintTip();
void Process();
char GetResponse() const;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -