InterviewSolution
Saved Bookmarks
| 1. |
What Is The Diffrence Between Inner Class And Nested Class? |
|
Answer» When a CLASS is defined WITHIN a SCOPE od another class, then it becomes inner class. If the access MODIFIER of the inner class is static, then it becomes nested class. When a class is defined within a scope od another class, then it becomes inner class. If the access modifier of the inner class is static, then it becomes nested class. |
|