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
there is no way to make a field "read only" from outside. the only - and right - way is to make the fields private and provide only getters, no setters.