【单选题】给定java 代码如下,编译运行后,输出结果是( ) public class test { static int i; public int aMethod() { i++; return i; } public static void main (String args[]) { Test test=new Test() ;...
【单选题】给定java 代码如下,编译运行后,输出结果是()(选择一项)。 public class test { static int i; public int aMethod() { i++; return i; } public static void main (String args[]) { Test test=new Tes...
【单选题】给定java 代码如下,编译运行后,输出结果是( )。 public class Test { static int i; public int aMethod() { i++; return i; } public static void main (String args[]) { Test test=new Test() ; test.aMethod () ; System.out.prin...