forked from pezy/CppPrimer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
156 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// | ||
// ex7_21.h | ||
// Exercise 7.21 | ||
// | ||
// Created by pezy on 11/13/14. | ||
// Copyright (c) 2014 pezy. All rights reserved. | ||
// | ||
|
||
#ifndef CP5_ex7_21_h | ||
#define CP5_ex7_21_h | ||
|
||
#include <string> | ||
#include <iostream> | ||
|
||
class Sales_data { | ||
friend std::istream &read(std::istream &is, Sales_data &item); | ||
friend std::ostream &print(std::ostream &os, const Sales_data &item); | ||
friend Sales_data add(const Sales_data &lhs, const Sales_data &rhs); | ||
|
||
public: | ||
Sales_data() = default; | ||
Sales_data(const std::string &s):bookNo(s) {} | ||
Sales_data(const std::string &s, unsigned n, double p):bookNo(s),units_sold(n),revenue(n*p){} | ||
Sales_data(std::istream &is) { read(is, *this);} | ||
|
||
std::string isbn() const { return bookNo; }; | ||
Sales_data& combine(const Sales_data&); | ||
|
||
private: | ||
std::string bookNo; | ||
unsigned units_sold = 0; | ||
double revenue = 0.0; | ||
}; | ||
|
||
// member functions. | ||
Sales_data& Sales_data::combine(const Sales_data& rhs) | ||
{ | ||
units_sold += rhs.units_sold; | ||
revenue += rhs.revenue; | ||
return *this; | ||
} | ||
|
||
// friend functions | ||
std::istream &read(std::istream &is, Sales_data &item) | ||
{ | ||
double price = 0; | ||
is >> item.bookNo >> item.units_sold >> price; | ||
item.revenue = price * item.units_sold; | ||
return is; | ||
} | ||
|
||
std::ostream &print(std::ostream &os, const Sales_data &item) | ||
{ | ||
os << item.isbn() << " " << item.units_sold << " " << item.revenue; | ||
return os; | ||
} | ||
|
||
Sales_data add(const Sales_data &lhs, const Sales_data &rhs) | ||
{ | ||
Sales_data sum = lhs; | ||
sum.combine(rhs); | ||
return sum; | ||
} | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// | ||
// ex7_22.h | ||
// Exercise 7.22 | ||
// | ||
// Created by pezy on 11/13/14. | ||
// Copyright (c) 2014 pezy. All rights reserved. | ||
// | ||
|
||
#ifndef CP5_ex7_22_h | ||
#define CP5_ex7_22_h | ||
|
||
#include <string> | ||
#include <iostream> | ||
|
||
struct Person { | ||
friend std::istream &read(std::istream &is, Person &person); | ||
friend std::ostream &print(std::ostream &os, const Person &person); | ||
|
||
public: | ||
Person() = default; | ||
Person(const std::string sname, const std::string saddr):name(sname), address(saddr){} | ||
Person(std::istream &is){read(is, *this);} | ||
|
||
std::string getName() const { return name; } | ||
std::string getAddress() const { return address; } | ||
private: | ||
std::string name; | ||
std::string address; | ||
}; | ||
|
||
std::istream &read(std::istream &is, Person &person) | ||
{ | ||
is >> person.name >> person.address; | ||
return is; | ||
} | ||
|
||
std::ostream &print(std::ostream &os, const Person &person) | ||
{ | ||
os << person.name << " " << person.address; | ||
return os; | ||
} | ||
|
||
#endif |