下面程序的输出是?
class box {
int width;
int height;
int length;
}
class mainclass {
public static void main(String args[]) {
box obj1 = new box();
box obj2 = new box();
obj1.height = 1;
obj1.length = 2;
obj1.width = 1;
obj2 = obj1;
System.out.println(obj2.height);
}
}
A 1
B 2
C 运行时错误
D 垃圾值
class box {
int width;
int height;
int length;
}
class mainclass {
public static void main(String args[]) {
box obj1 = new box();
box obj2 = new box();
obj1.height = 1;
obj1.length = 2;
obj1.width = 1;
obj2 = obj1;
System.out.println(obj2.height);
}
}
A 1
B 2
C 运行时错误
D 垃圾值