If I write an abstract class, then nest a class in the abstract class, will I have access to its methods in any subclasses of the abstract class? I cannot find the answer anywhere..
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Of course, access modifiers on inner classes obey the same rules as on fields and methods. It does not matter whether your class is abstract or concrete, as long as the nested class is either
|
||||
|
|
|
|||
|
|
|
If the nested class is at least protected, we can access its methods (as long as the methods are public or we are in the same package and they are not private). But you could have tried this out yourself easily :-) |
|||
|
|