Sales_item.cpp
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #include "bookexcept.h"
  30. #include "Sales_item.h"
  31. #include <iostream>
  32. using std::istream; using std::ostream;
  33. // assumes that both objects refer to the same isbn
  34. Sales_item&
  35. Sales_item::operator+=(const Sales_item& rhs) 
  36. {
  37.     units_sold += rhs.units_sold; 
  38.     revenue += rhs.revenue; 
  39.     return *this;
  40. }
  41. // throws exception if both objects do not refer to the same isbn
  42. Sales_item 
  43. operator+(const Sales_item& lhs, const Sales_item& rhs) 
  44. {
  45.     if (!lhs.same_isbn(rhs))
  46.         throw isbn_mismatch("isbn mismatch",
  47.                             lhs.book(), rhs.book());
  48.     Sales_item ret(lhs);  // copy lhs into a local object that we'll return
  49.     ret += rhs;           // add in the contents of rhs 
  50.     return ret;           // return ret by value
  51. }
  52. istream& 
  53. operator>>(istream& in, Sales_item& s)
  54. {
  55.     double price;
  56.     in >> s.isbn >> s.units_sold >> price;
  57.     // check that the inputs succeeded
  58.     if (in)
  59.         s.revenue = s.units_sold * price;
  60.     else 
  61.         s = Sales_item();  // input failed, reset object to default state
  62.     return in;
  63. }
  64. ostream& 
  65. operator<<(ostream& out, const Sales_item& s)
  66. {
  67.     out << s.isbn << "t" << s.units_sold << "t" 
  68.         << s.revenue << "t" <<  s.avg_price();
  69.     return out;
  70. }
  71. double Sales_item::avg_price() const
  72. {
  73.     if (units_sold) 
  74.         return revenue/units_sold; 
  75.     else 
  76.         return 0;
  77. }