本帖最后由 Friendy89 于 2013-4-14 21:09 编辑
public class IntegerDemo
{
public static void sop(String str)
{
System.out.println(str);
}
public static void main(String[] args)
{
method();
}
public static void method()
{
Integer x=new Integer("123");
Integer y=new Integer(123);
sop("x.equels(y) : "+x.equals(y)); //为什么这里输出是true,equels不是用于比较字符串是否相等吗
}
}
|