Public methods and Private Variables

What does it mean by Public methods and Private Variables? Declaring methods as public and variables as private is a programming technique and comes with its own advantages. We know private variables or methods cannot be accessed by composition (has-a relationship) by another class where as public members can be accessed. A private variable can …

Public methods and Private Variables Read More »