C++ primer5 15.3/15.5/15.15/15.21-22/15.28-29/15.30/15.35
15.3 Quote销售书籍基类
#ifndef QUOTE_H
#define QUOTE_H
#include <string>
#include <iostream>
#include <vector>
using namespace std;
class Quote//销售书籍基类
{
public:
Quote() = default;
Quote(string const &b, double p) : bookNo(b), pric
原创
2021-04-08 09:33:36 ·
215 阅读 ·
0 评论