Give me a real time examples for encapsulation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Give me a real time examples for encapsulation

3rd Mar 2016, 8:29 PM
Prathik Preman
Prathik Preman - avatar
2 Answers
+ 9
Real data project,a big project, should be based on encapsulation approach. What that means? You should have no direct access to the inherited fields, to change the value of those and so on. You should use just get methods of the already written code, or just use the written methods without having an access to change the functionality of them. That is just a simple example how the encapsulation should work in a real project. From my personal opinion, every single used API should be encapsulated.
23rd Jun 2016, 5:01 PM
Ghena Ramascan
Ghena Ramascan - avatar
+ 7
For example, if you develop a banking software, which deals with bank accounts, you would declare the balance variable as private, and make it accessible only to those methods, which are allowed to access and change the balance. So, by utilizing the concept of Encapsulation, some level of security is achieved.
18th May 2016, 3:27 PM
James Flanders