How can we have a variable that is writable within the class but only \"readable\" outside it?
For example, instead of having to do this:
Class
Your solution is: private fields, private setters, protected or public getters (note: protected allows access from same package as well as from subclasses)