4 Adding Methods
After reading lesson 4, you will be able to:
- Understand the components of a method signature
- Add Getter and Setter methods to your class
- Add more methods to your program
All programming languages have a way to create a block of reusable code. In Python and other programming languages it is called a function, in Java it is called a method. The idea is that the method performs some action, but the calling program does not need to know exactly how it works, just that it will return the correct result or perform the correct action.
In Lesson 3, I introduced the topic of encapsulation as a pillar of OO programming. A key feature of encapsulation is using methods to access the private data of a class. The methods can contain logic to prevent any erroneous data corruption, such as trying to withdraw an amount more than the current balance of a checking account.