Encapsulation

CaupolicanDiaz135 total contributions
Published Aug 2, 2021Updated Mar 7, 2023
Contribute to Docs
Encapsulation advances the benefits of modularity and hiding away of complexities in order to better maintain and reason about code. It is one of the four principles of object-oriented programming (OOP).
Most of the time encapsulation can be achieved by creating classes with an overarching design structure that includes private and public methods (or getters and setters) for our systems to interact.
Python Example
In the following Python example, a Robot
class is created with a __version
property, initialized as a number. Getter and setter methods are made to allow any instance of Robot
to be set with a __version
and have it changed later]:
class Robot(object):def __init__(self):self.__version = 22def getVersion(self):print(self.__version)def setVersion(self, version):self.__version = versionobj = Robot()obj.getVersion()obj.setVersion(23)obj.getVersion()print(obj.__version)
All contributors
- CaupolicanDiaz135 total contributions
- Christine_Yang271 total contributions
- garanews222 total contributions
- BrandonDusch580 total contributions
- Anonymous contributorAnonymous contributor3077 total contributions
- christian.dinh2481 total contributions
- theeguru___45 total contributions
- CaupolicanDiaz
- Christine_Yang
- garanews
- BrandonDusch
- Anonymous contributor
- christian.dinh
- theeguru___
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.