InterviewSolution
Saved Bookmarks
| 1. |
What Is The Access Scope Of A Protected Method? |
|
Answer» A PROTECTED METHOD can be accessed by the CLASSES within the same package or by the SUBCLASSES of the class in any package. A protected method can be accessed by the classes within the same package or by the subclasses of the class in any package. |
|