阅读下列的程序public class Test3 { public static void main(String[] args) { _________________________ _________________________ }}class Outer { static class Inner { public void method () { System.out.println("method"); } }}下列选项中,可以正确输出method()方法的是( )A、Outer o = new Outer(); o.method();B、Inner I = new Inner(); i.method();C、Outer.Inner oi = new Outer.Inner(); oi.method();D、以上答案都不对