赞
踩
public class Main
{
@Override
public boolean equals(Object obj)
{
// TODO: Implement this method
return super.equals(obj);
}
public static void main(String age[])
{
String io=new String("Ne");
String ik=new String("Ne");
System.out.println(io==ik); //两个对象的引用 false
System.out.println(io.equals(ik)); //内容,true
String nam="le";
String nbn="le";
System.out.println(nam==nbn); //相同常量的引用 true
System.out.println(nam.equals(nbn)); //内容,相等
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。