-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst_reference.cpp
58 lines (50 loc) · 1.08 KB
/
const_reference.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
#include <iostream>
#include <string>
class Base {
protected:
std::string m_name;
public:
Base()
: m_name("Base") {
}
std::string name() const {
return m_name;
}
virtual void display() const {
std::cout << "Base::display()\n";
}
};
class Derived : public Base {
public:
Derived() {
m_name = "Derived";
}
std::string name() const {
return m_name;
}
virtual void display() const {
std::cout << "Derived::display()\n";
}
};
/* Since the parameter b is passed by-value
* as a Base, Derived class object will be
* sliced off. Inside this function, b will
* always act like an object of class Base
*/
void PrintAndDisplay(Base b) {
std::cout << "Name: " << b.name() << std::endl;
b.display();
}
/* The way around the slicing problem
* is to pass b by reference-to-const
*/
void ConstPrintAndDisplay(const Base& b) {
std::cout << "Name: " << b.name() << std::endl;
b.display();
}
int main() {
Derived d;
PrintAndDisplay(d);
ConstPrintAndDisplay(d);
return 0;
}