• 2022-06-15
    已有如下程序:[br][/br] public class Test{[br][/br] static int x,y;[br][/br] public Test(int x,int y)[br][/br] {[br][/br] this.x=x;[br][/br] this.y=y;[br][/br] }[br][/br] public static void main(String args[])[br][/br] {[br][/br] Test t1=new Test(10,20);[br][/br] Test t2=new Test(3,4);[br][/br] System.out.println(t1.x+","+t1.y);[br][/br] [br][/br] }[br][/br] }[br][/br] 下面说法正确的是:( )
    A: 编译错误
    B: 输出10,20
    C: 输出3,4
    D: 运行错误
  • 举一反三