forked from Mooophy/Cpp-Primer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
113 lines (90 loc) · 2.94 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/***************************************************************************
* @file main.cpp
* @author Alan.W
* @date 22 Jan 2014
* @remark This code is for the exercises from C++ Primer 5th Edition
* @note
***************************************************************************/
//
// Exercise 15.12:
// Is it ever useful to declare a member function as both override and final?
// Why or why not?
// Sure. override means overriding the same name virtual function in base class.
// final means preventing any overriding this virtual function by any derived classes
// that are more lower at the hierarchy .
//
// Exercise 15.13:
// Given the following classes, explain each print function:
// If there is a problem in this code, how would you fix it?
//
// Exercise 15.14:
// Given the classes from the previous exercise and the following objects,
// determine which function is called at run time:
//
#include <iostream>
#include <string>
#include "quote.h"
#include "bulk_quote.h"
#include "limit_quote.h"
class base
{
public:
std::string name() { return basename; }
virtual void print(std::ostream &os) { os << basename; }
// ~~~~~^^^^^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// The print here just output the basename of the base.
private:
std::string basename = "base\n";
};
class derived : public base
{
public:
void print(std::ostream &os) override { base::print(os); os << " derived\n " << i; }
// ^^^^^ ^^^^^^^^ ^^^^^^ -- added to fix this problem
// this print wanted to call the print from the base class.
// however, the class scope base:: was omitted.As a result
// it will cause an infinit recursion.
// btw, we can add a keyword `override` to show this function
// overrides a virtual function from the base class, although
// it is not neccessary, but for security, the more, the better.
private:
int i;
};
void print_debug(const Quote& q);
double print_total (std::ostream& os, const Quote& item, size_t n);
int main()
{
// ex15.14
base bobj;
base *bp1 = &bobj;
base &br1 = bobj;
derived dobj;
base *bp2 = &dobj;
base &br2 = dobj;
// a. this is an object, so compile time.
//bobj.print(std::cout);
// b. this is an object, so compile time.
//dobj.print(std::cout);
// c. function name is not virtual , so no dynamic
// binding happens.so compile time
//std::cout << bp1->name();
// d. function name is not virtual , so no dynamic
// binding happens.so compile time
//std::cout << bp2->name();
// e. run time
//br1.print(std::cout);
// f. run time
br2.print(std::cout);
return 0;
}
double print_total(std::ostream &os, const Quote &item, size_t n)
{
double ret = item.net_price(n);
os << "ISBN:" << item.isbn()
<< "# sold: " << n << " total due: " << ret << std::endl;
return ret;
}
void print_debug(const Quote &q)
{
q.debug();
}