Search Results

4
votes

Get/Set in the c++ world, faux-pas?

Encapsulation is an OOP concept and it applies to all OOP languages. Public data members would break encapsulation. This may be fine if you have a very simple object which does not need encapsulat …
1
vote

What’s the point of OOP?

The point of OOP is to give the programmer another means for describing and communicating a solution to a problem in code to machines and people. The most important part of that is the communicati …