-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathObject_Reference.cpp
75 lines (61 loc) · 2.01 KB
/
Object_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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <iostream>
class item_ecs36b
{
private:
protected:
public:
std::string item;
int quantity;
};
// int
void
set_quantity_by_value // need to make a copy of _item
(item_ecs36b _item, int _quantity)
{
_item.quantity = _quantity;
std::cout << "the address of the object _item is " << &(_item) << std::endl;
std::cout << "the address of the member quantity is " << &(_item.quantity) << std::endl;
// return 2.5 * quantity;
}
void
set_quantity_by_reference
(item_ecs36b& _item, int _quantity)
{
_item.quantity = _quantity;
std::cout << "the address of the object _item is " << &(_item) << std::endl;
std::cout << "the address of the member quantity is " << &(_item.quantity) << std::endl;
}
void
set_quantity_by_pointer
(item_ecs36b * _item_ptr, int _quantity)
{
_item_ptr->quantity = _quantity;
std::cout << "the address of the object _item is " << _item_ptr << std::endl;
std::cout << "the address of the member quantity is " << &(_item_ptr->quantity) << std::endl;
// (*_item_ptr).quantity = _quantity;
// item_ptr @0x21
// *item_ptr 25
// &item_ptr @0x07
}
int
main(void)
{
std::cout << "the size of std::string is " << sizeof(std::string) << std::endl;
item_ecs36b my_item;
my_item.quantity = 0;
std::cout << "the address of the object _item is " << &(my_item) << std::endl;
std::cout << "the address of the member quantity is " << &(my_item.quantity) << std::endl;
std::cout << "the original quantity is " << my_item.quantity << std::endl;
// 0
// std::cout << "the original quantity is " << my_item.quantity << "\n";
set_quantity_by_value(my_item, 10);
// 0 or 10
std::cout << "the call-by-value quantity is " << my_item.quantity << std::endl;
set_quantity_by_reference(my_item, 1000);
std::cout << "the call-by-reference quantity is " << my_item.quantity << std::endl;
// 1000
set_quantity_by_pointer(&my_item, 3000);
std::cout << "the call-by-address quantity is " << my_item.quantity << std::endl;
// 3000
return 0;
}