private
Keyword
private
keyword declares a member’s access as private.
That is, the member is only visible within the class, not from any other class (including subclasses).
Because access modifiers are not handled at instance level but at class level, private members of an object are visible from other instances of the same class!
“We shall not cease from exploration And the end of all our exploring Will be to arrive where we started And know the place for the first time.” ― T. S. Eliot, Four Quartets |