-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassobjectsbyref.cpp
70 lines (61 loc) · 1.44 KB
/
passobjectsbyref.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
/*
* =====================================================================================
*
* Filename: passobjectsbyref.cpp
*
* Description: Passing pointers to objects
*
* Version: 1.0
* Created: 04/01/13 21:30:12
* Revision: none
* Compiler: gcc
*
* Author: Robert Halliday (rh), [email protected]
* Company: rphhpr
*
* =====================================================================================
*/
#include <iostream>
class SimpleCat
{
public:
SimpleCat();
SimpleCat(SimpleCat&);
~SimpleCat();
};
SimpleCat::SimpleCat()
{
std::cout << "SimpleCat constructor...\n";
}
SimpleCat::SimpleCat(SimpleCat&)
{
std::cout << "SimpleCat copy constructor..\n";
}
SimpleCat::~SimpleCat()
{
std::cout << "SimpleCat destructor...\n";
}
SimpleCat FunctionOne (SimpleCat theCat);
SimpleCat* FunctionTwo (SimpleCat *theCat);
int main()
{
std::cout << "Making a cat..\n";
SimpleCat Frisky;
std::cout << "Calling FunctionOne...\n";
FunctionOne(Frisky);
std::cout << "Calling FunctionTwo...\n";
FunctionTwo(&Frisky);
return 0;
}
// FunctionOne, passes by value
SimpleCat FunctionOne(SimpleCat theCat)
{
std::cout << "Function One. Returning...\n";
return theCat;
}
//FunctionTwo, passes by reference
SimpleCat* FunctionTwo(SimpleCat *theCat)
{
std::cout << "FunctionTwo returning...\n";
return theCat;
}