想哥的博客

燃尽青春换一个答案
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年3月31日

摘要: 最近在看c++ primer,这是Sales_item.h的源码,官网不知道为啥上不去了,摘录放在这。#ifndef SALESITEM_H#define SALESITEM_H#include <iostream>#include <string>class Sales_item{public: Sales_item(const std::string &book):isbn(book),units_sold(0),revenue(0.0){} Sales_item(std::istream &is){ is >> *this;} frie 阅读全文

posted @ 2012-03-31 15:29 想哥的博客 阅读(3882) 评论(2) 推荐(0)