forked from muziing/CPP_Learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
18_类与对象_对象特征_03.cpp
75 lines (64 loc) · 1.18 KB
/
18_类与对象_对象特征_03.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
#include <iostream>
using namespace std;
// 拷贝构造函数调用时机
// - 使用一个已经创建完毕的对象来初始化一个新对象
// - 值传递的方式给函数参数传值
// - 以值方式返回局部对象
class Person
{
public:
int m_Age;
Person()
{
cout << "Person默认构造函数调用" << endl;
}
Person(int age)
{
m_Age = age;
cout << "Person有参构造函数调用" << endl;
}
Person(const Person &p)
{
m_Age = p.m_Age;
cout << "Person拷贝构造函数调用" << endl;
}
~Person()
{
cout << "Person析构函数调用" << endl;
}
};
// 1、使用一个已经创建完毕的对象来初始化一个新对象
void test01()
{
Person p1(20);
Person p2(p1);
cout << p2.m_Age << endl;
}
// 2、值传递的方式给函数参数传值
void doWork(Person p)
{
}
void test02()
{
Person p;
doWork(p);
}
// 3、以值方式返回局部对象
Person doWork2()
{
Person p1;
cout << &p1 << endl;
return p1;
}
void test03()
{
Person p = doWork2();
cout << &p << endl;
}
int main()
{
// test01();
test02();
// test03();
return 0;
}