[转载]一个Integer的问题
import java.io.*;
class Y{
public static void main(String []args){
Integer a = 200;
Integer b = 200;
if(a==b)
System.out.println("true");
else
System.out.println("false");
}
}
结果是
false
当改成a=100,b=100的时候为什么是true
==这个不是只是否是同一对象吗?在里面明显a跟b不是一个东西!