DEVFYI - Developer Resource - FYI

If a method is declared as protected, where may the method be accessed?

Java Interview Questions and Answers (part 2)


(Continued from previous question...)

292. If a method is declared as protected, where may the method be accessed?

A protected method may only be accessed by classes or interfaces of the same package or by subclasses of the class in which it is declared.

(Continued on next question...)

Other Interview Questions