当前位置: 技术问答>java相关
简单问题,快来拿分
来源: 互联网 发布时间:2015-01-13
本文导语: -------------------------------------------------------------------------------- Consider the following piece of code and select all statements which yield a boolean value of true as a result. Double d1=new Double(10.0); Double d2=new Double(10.0); in...
--------------------------------------------------------------------------------
Consider the following piece of code and select all statements which yield a boolean value of true as a result.
Double d1=new Double(10.0);
Double d2=new Double(10.0);
int x=10;
float f=10.0f;
1) d1 == d2;
2) d1 == x;
3) f == x;
4) d1.equals(d2);
5) None of the above
为什么不选1?
Consider the following piece of code and select all statements which yield a boolean value of true as a result.
Double d1=new Double(10.0);
Double d2=new Double(10.0);
int x=10;
float f=10.0f;
1) d1 == d2;
2) d1 == x;
3) f == x;
4) d1.equals(d2);
5) None of the above
为什么不选1?
|
这应该是道SCJP的题吧。
d1 和 d2分别是两个Double对象的引用值(好比两个地址),当然不同了。
但要注意String,如果是下面这样,是对的:
String s1 = "abc";
String s2 = "abc";
s1 == s2;
s1,s2为同一对象
d1 和 d2分别是两个Double对象的引用值(好比两个地址),当然不同了。
但要注意String,如果是下面这样,是对的:
String s1 = "abc";
String s2 = "abc";
s1 == s2;
s1,s2为同一对象
|
4
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。