📄 book.h
字号:
// Book.h: interface for the Book class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BOOK_H__F94D4980_49E1_42E0_BED4_74BA49BE0CD4__INCLUDED_)
#define AFX_BOOK_H__F94D4980_49E1_42E0_BED4_74BA49BE0CD4__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include<iostream>
using namespace std;
#include<string>
class Book
{
public:
Book();
virtual ~Book();
int bookid;
string bookname;
string author;
int count;
};
#endif // !defined(AFX_BOOK_H__F94D4980_49E1_42E0_BED4_74BA49BE0CD4__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -