3下面程序段的输出结果为( )。package test;public class ClassA{ int x=20; static int y=6; public static void main(String args[]) {

admin2013-03-01  34

问题 3下面程序段的输出结果为(    )。package test;public class ClassA{   int x=20;   static int y=6;   public static void main(String args[])   {     ClassB  b=new ClassB();     b.go(10);     System.out.println("x="+b.x);    }}class ClassB{  int x;  void go(int y)  {     ClassA a=new ClassA();     x=a.y;  }}

选项 A、x=10
B、x=20     
C、x=6
D、编译不通过

答案4

解析
转载请注明原文地址:https://kaotiyun.com/show/ry2p777K
0

最新回复(0)