Home > Java Programming > Inner Classes > Questions and Answers
Q: |
Given below the sample code : class SuperClass { SuperClass() { } static class SubClass { SubClass() { } } } Which is the correct way to declare the object of "Subclass" , which can be use outside the "Superclass" ? | ||||||||||
|
Comment on this Question | |
Name: | |
|