What is the difference between public, protected, package-private and private in Java?
Asked 07 September, 2021
Viewed 2K times
  • 57
Votes

In Java, are there clear rules on when to use each of access modifiers, namely the default (package private), public, protected and private, while making class and interface and dealing with inheritance?

29 Answer