Posts by rogger • 103 points
1 post
-
10
votes2
answers591
viewsQ: Nested class in Java
I need to have nested classes in Java. Why the following implementation doesn’t work? public class A{ private class B{ public B(){ System.out.println("class B"); } } public static void main(String[]…