Selasa, 25 April 2017

What are different ways to access members of objects in C++

After creating an object, we can access the data and functions using the dot operator as shown below: object-name.variable-name; (or) object-name.function-name(params-list);   Based on our student class example, we can access the get_details() function as shown below: std1.get_details(); std2.get_details();   The complete program which demonstrates creating class, creating objects, and accessing object members is as follows: 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

The post What are different ways to access members of objects in C++ appeared first on Coding Security.


What are different ways to access members of objects in C++
read more

Tidak ada komentar:

Posting Komentar