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
yes.. we can make a variable read-only using final keyword
Ex: public final int id = 10;
public final int id = 10;