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

书籍源码

开发平台:

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. #ifndef SALESITEM_H
  30. #define SALESITEM_H
  31. // Definition of Sales_item class and related functions goes here
  32. #include <iostream>
  33. #include <string>
  34. class Sales_item {
  35. friend bool operator==(const Sales_item&, const Sales_item&);
  36. // other members as before
  37. public:
  38.     // added constructors to initialize from a string or an istream
  39.     Sales_item(const std::string &book):
  40.               isbn(book), units_sold(0), revenue(0.0) { }
  41.     Sales_item(std::istream &is) { is >> *this; }
  42.     friend std::istream& operator>>(std::istream&, Sales_item&);
  43.     friend std::ostream& operator<<(std::ostream&, const Sales_item&);
  44. public:
  45.     // operations on Sales_item objects
  46.     // member binary operator: left-hand operand bound to implicit this pointer
  47.     Sales_item& operator+=(const Sales_item&);
  48.     // other members as before
  49.     
  50. public:
  51.     // operations on Sales_item objects
  52.     double avg_price() const;
  53.     bool same_isbn(const Sales_item &rhs) const
  54.         { return isbn == rhs.isbn; }
  55.     // default constructor needed to initialize members of built-in type
  56.     Sales_item(): units_sold(0), revenue(0.0) { }
  57. // private members as before
  58. private:
  59.     std::string isbn;
  60.     unsigned units_sold;
  61.     double revenue;
  62. };
  63. // nonmember binary operator: must declare a parameter for each operand
  64. Sales_item operator+(const Sales_item&, const Sales_item&);
  65. inline bool 
  66. operator==(const Sales_item &lhs, const Sales_item &rhs)
  67. {
  68.     // must be made a friend of Sales_item
  69.     return lhs.units_sold == rhs.units_sold &&
  70.            lhs.revenue == rhs.revenue &&
  71.    lhs.same_isbn(rhs);
  72. }
  73. inline bool 
  74. operator!=(const Sales_item &lhs, const Sales_item &rhs)
  75. {
  76.     return !(lhs == rhs); // != defined in terms of operator==
  77. }
  78. using std::istream; using std::ostream;
  79. // assumes that both objects refer to the same isbn
  80. inline
  81. Sales_item& Sales_item::operator+=(const Sales_item& rhs) 
  82. {
  83.     units_sold += rhs.units_sold; 
  84.     revenue += rhs.revenue; 
  85.     return *this;
  86. }
  87. // assumes that both objects refer to the same isbn
  88. inline
  89. Sales_item 
  90. operator+(const Sales_item& lhs, const Sales_item& rhs) 
  91. {
  92.     Sales_item ret(lhs);  // copy lhs into a local object that we'll return
  93.     ret += rhs;           // add in the contents of rhs 
  94.     return ret;           // return ret by value
  95. }
  96. inline
  97. istream& 
  98. operator>>(istream& in, Sales_item& s)
  99. {
  100.     double price;
  101.     in >> s.isbn >> s.units_sold >> price;
  102.     // check that the inputs succeeded
  103.     if (in)
  104.         s.revenue = s.units_sold * price;
  105.     else 
  106.         s = Sales_item();  // input failed: reset object to default state
  107.     return in;
  108. }
  109. inline
  110. ostream& 
  111. operator<<(ostream& out, const Sales_item& s)
  112. {
  113.     out << s.isbn << "t" << s.units_sold << "t" 
  114.         << s.revenue << "t" <<  s.avg_price();
  115.     return out;
  116. }
  117. inline
  118. double Sales_item::avg_price() const
  119. {
  120.     if (units_sold) 
  121.         return revenue/units_sold; 
  122.     else 
  123.         return 0;
  124. }
  125. #endif