?? book.h
字號(hào):
#include <iostream>
#include <string>
using namespace std;
namespace jixia
{
class Book
{
int ID; // 條碼
string Name; // 書名
string Author;// 作者
string Price; // 價(jià)格
public:
Book(int IDs,string Names,string Authors,string Prices);
~Book() {}
friend ostream& operator<<(ostream &o,Book &b);
friend class Books;
friend class Library;
};
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -