当前位置: 技术问答>java相关
"==" 和equal 和什么区别?有什么相同?
来源: 互联网 发布时间:2015-10-15
本文导语: 大家看看标题吧,就这样了,讲的清楚给分,讲不清楚,那就不用说了 | 1 Equality for String adn Boolean objects means same charcter string String m1 = "Hello"; String m2 = "Hello"; m1.equals(m2) ...
大家看看标题吧,就这样了,讲的清楚给分,讲不清楚,那就不用说了
|
1 Equality for String adn Boolean objects means same charcter string
String m1 = "Hello";
String m2 = "Hello";
m1.equals(m2) -----true;
Boolean b1 = new Boolean(true);
Boolean b2 = new Boolean(true);
b1.equals(b2)------true;
2 Result of applying "==" operator to any two objects of any type:
String s1 = "hi";
String s2 = "hi"; System.out.prilnt(s1 == s2);
3 String s1 = new String("hi");
String s2 = new String("hi");
Boolean b1 = new Boolean(true);
Boolean b2 = new Boolean(true);
System.out.prilnt(s1 == s2); //false different reference
System.out.prilnt(b1 == b2); //false different reference
String m1 = "Hello";
String m2 = "Hello";
m1.equals(m2) -----true;
Boolean b1 = new Boolean(true);
Boolean b2 = new Boolean(true);
b1.equals(b2)------true;
2 Result of applying "==" operator to any two objects of any type:
String s1 = "hi";
String s2 = "hi"; System.out.prilnt(s1 == s2);
3 String s1 = new String("hi");
String s2 = new String("hi");
Boolean b1 = new Boolean(true);
Boolean b2 = new Boolean(true);
System.out.prilnt(s1 == s2); //false different reference
System.out.prilnt(b1 == b2); //false different reference
|
一般 == 对比内存值,equals对比内容值是否相等
用法:
String a = "A";
String b = "A";
a==b 返回 false
a.equals(b) 返回 true
其它对象也一样(就是说大写开头的 类型,例如 Double,Integer,Float等等)
而小写的类型(例如,int,double,float,boolean等等)就不能用equals比较了,只能用 == 号比较
int a = 1;
int b = 1;
a==b 返回 true
a.equals(b)出错
用法:
String a = "A";
String b = "A";
a==b 返回 false
a.equals(b) 返回 true
其它对象也一样(就是说大写开头的 类型,例如 Double,Integer,Float等等)
而小写的类型(例如,int,double,float,boolean等等)就不能用equals比较了,只能用 == 号比较
int a = 1;
int b = 1;
a==b 返回 true
a.equals(b)出错
|
http://expert.csdn.net/Expert/topic/1124/1124320.xml?temp=.1704218
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。