标题: 分享一道题 [打印本页] 作者: user_lqb 时间: 2016-3-30 11:14 标题: 分享一道题 根据下面的程序代码,哪些选项的值返回true?
public class Square {
long width;
public Square(long l) {
width = l;
}
public static void main(String arg[]) {
Square a, b, c;
a = new Square(42L);
b = new Square(42L);
c = b;
long s = 42L;
}
}