#protected
code What is the difference between the private and protected access modifiers in Java?
In Java, private and protected are two of the four access modifiers that control the visibility of a class, method, or variable in a program. They... Read more