Access inner class from outsideTag(s): Language
public class TestIt { public static void main(String[] args) { Outer outer = new Outer(); outer.new Inner().hello(); /* output : Hello from Inner() */ } } class Outer { public class Inner { public void hello(){ System.out.println("Hello from Inner()"); } } }
mail_outline
Send comment, question or suggestion to howto@rgagnon.com
Send comment, question or suggestion to howto@rgagnon.com