📄 bdatabase.h
字号:
// bdatabase.h: interface for the bdatabase class.
#include"stdafx.h"
#include"fstream.h"
#include "book.h" // Added by ClassView
class bdatabase
{
public:
int bookid;
void clear();
int addbook(int n,char *na);
Book *query(int bookid);
void list();
void bookdata();
bdatabase();
~bdatabase();
void writeB();
private:
Book book[100];
int top;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -