14.2.1

来源:互联网 发布:pptv聚力网络电视2017 编辑:程序博客网 时间:2024/05/24 07:12

14.6

friend std::ostream& operator<<(std::ostream&, const Sales_data&);
std::ostream& operator<<(std::ostream &os, const Sales_data &item){    os << item.isbn() << " " << item.units_sold << " " << item.revenue << " " << item.avg_price();    return os;}

14.7

friend std::ostream& operator<<(std::ostream&, const String&);
std::ostream& operator<<(std::ostream &os, const String &s){    char *c = const_cast<char*>(s.c_str());    while (*c)        os << *c++;    return os;}

14.8

std::ostream& operator<<(std::ostream &out, const Book &book){    out << book.no_ << " " << book.name_ << " " << book.author_ << " " << book.pubdate_;    return out;}
0 0