0
我試圖查看Java中某些類型的真正表。Java類型,值比較
而我不能理解方式頂部返回true和一個下面的假?
public class CompareTypes{
public static void main(String[] args){
// -------------------------------------
Integer AA = 12;
Integer BB = 12;
System.out.println(AA == BB); // true
// -------------------------------------
Integer a = 128;
Integer b = 128;
System.out.println(a == b); // false
}
}