问题 单项选择题

下列程序的运行结果为______。 class A { int b=0; } public class ex35 public static void main(String args[]) {ex35 t=new ex35();t.method(); } void method() {A A1=new A();A A2=new A();A1,b=A2.b=12;boolean b=A1.equals(A2);Syatem.out.println(b); } }

A.true

B.false

C.0

D.1

答案

参考答案:B

填空题
单项选择题