티스토리 뷰



Encapsulation (getters and setters) in C++


In C++, encapsulation is a very popular feature to hide data. 
All data members have to be private so outside entities are not able to access the data directly. It protects the data from modifying. If change is needed, getter and setter function should be set to access the private data from outside.


Example code




'C++' 카테고리의 다른 글

Inheritance and Overriding in C++ with simple example  (0) 2018.11.07
Constructor and Destructor in C++  (0) 2018.11.06
Reference in C++  (0) 2018.11.06
Class and Object in C++  (0) 2018.11.06
Dynamic Allocation in C++  (0) 2018.11.03