Sales_item.h
上传用户: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. #ifndef SALESITEM_H
  30. #define SALESITEM_H
  31. // Definition of Sales_item class and related functions goes here
  32. // NB: when prepare this file for the code directory on the web,
  33. //     be sure all operations are defined as inlines within the
  34. //     header so that user code can use the operations without
  35. //     needing to compile and use a corresponding .cc file
  36. #include <iostream>
  37. #include <string>
  38. class Sales_item {
  39.     friend bool operator==(const Sales_item&, const Sales_item&);
  40.     friend std::istream& operator>>(std::istream&, Sales_item&);
  41.     friend std::ostream& operator<<(std::ostream&, const Sales_item&);
  42. // other members as before
  43. public:
  44.     // added constructors to initialize from a string or an istream
  45.     Sales_item(const std::string &book):
  46.               isbn(book), units_sold(0), revenue(0.0) { }
  47.     Sales_item(std::istream &is) { is >> *this; }
  48. public:
  49.     // operations on Sales_item objects
  50.     // member binary operator: left-hand operand bound to implicit this pointer
  51.     Sales_item& operator+=(const Sales_item&);
  52.     // other members as before
  53.     
  54. public:
  55.     // operations on Sales_item objects
  56.     double avg_price() const;
  57.     bool same_isbn(const Sales_item &rhs) const
  58.         { return isbn == rhs.isbn; }
  59.     // default constructor needed to initialize members of built-in type
  60.     Sales_item(): units_sold(0), revenue(0.0) { }
  61. // private members as before
  62. private:
  63.     std::string isbn;
  64.     unsigned units_sold;
  65.     double revenue;
  66. };
  67. // nonmember binary operator: must declare a parameter for each operand
  68. Sales_item operator+(const Sales_item&, const Sales_item&);
  69. inline bool 
  70. operator==(const Sales_item &lhs, const Sales_item &rhs)
  71. {
  72.     return lhs.units_sold == rhs.units_sold &&
  73.            lhs.revenue == rhs.revenue &&
  74.    lhs.same_isbn(rhs);
  75. }
  76. inline bool 
  77. operator!=(const Sales_item &lhs, const Sales_item &rhs)
  78. {
  79.     return !(lhs == rhs); // != defined in terms of operator==
  80. }
  81. #endif