当前位置:  技术问答>java相关

SCJP模拟题,请教

    来源: 互联网  发布时间:2015-10-19

    本文导语:  2. Given: Integer i = new Integer (42); Long 1 = new Long (42); Double d = new Double (42.0); Which two expressions evaluate to True? (Choose Two) A. (i ==1) B. (i == d) C. (d == 1) D. (i.equals (d)) E. (d.equals (i)) F. (i.equals (42)) 我试...

2. Given:

Integer i = new Integer (42);
Long 1 = new Long (42);
Double d = new Double (42.0);

Which two expressions evaluate to True? (Choose Two)

A. (i ==1)
B. (i == d)
C. (d == 1)
D. (i.equals (d))
E. (d.equals (i))
F. (i.equals (42))

我试了一下好象没有对的呀

|
a b c 都不符合语法规范,因为i d l 都是对象,不能用 == 来判断
f 也不符合语法规范,因为equals方法比较的是两个对象的值 int 数42 显然不是对象。
就盛d 和 e 了,可是浮点数42,与整形数42.0值是不同的呀。那就没有答案吧,scjp考试题里规定可以有没有答案的题。

|
answer is wrong

|
de,不对,那就没有答案了
12 D

|
a b c 都不符合语法规范,因为i d l 都是对象,不能用 == 来判断
f 也不符合语法规范,因为equals方法比较的是两个对象的值 int 数42 显然不是对象。
就盛d 和 e 了,可是浮点数42,与整形数42.0值是不同的呀。那就没有答案吧,scjp考试题里规定可以有没有答案的题。



我同意这位大虾的看法,equal()的用法要求对比的两个Object必须类型一致,值相同,才会返回true。

注:Compares this object against the specified object. The result is true if and only if the argument is not null and is a Double object that represents a double that has the same value as the double represented by this object.

|
/**
A. An instance of the Inner class can be constructed with “new Outer.Inner ()”
B. An instance of the inner class cannot be constructed outside of package foo
C. An instance of the inner class can only be constructed from within the outer class
D. From within the package bar, an instance of the inner class can be constructed with “new inner()”
*/
package foo;
public class Outer
{
public static class Inner
{
public  void writeSt()
{
System.out.println("Hello");
}
}
}

class TryInner
{
public TryInner()
{
new Outer.Inner(); //-------------A is OK!!!! and C is wrong.
}
}
***************
/**
A. An instance of the Inner class can be constructed with “new Outer.Inner ()”
B. An instance of the inner class cannot be constructed outside of package foo
C. An instance of the inner class can only be constructed from within the outer class
D. From within the package bar, an instance of the inner class can be constructed with “new inner()”
*/
package bar;
class TryPack 
{
public static void main(String[] args) 
{
System.out.println("Hello World!");
//new Inner(); -----------This line is wrong so D is wrong;
new foo.Outer.Inner(); // You should write like this. and B is wrong 
}
}
************************The Answer is A

|
没有正确答案
equals在比较示范时类型不一致的一律返回false

|
这是一个static inner class.所以A是正确的。

    
 
 

您可能感兴趣的文章:

  • 有哪位做过Jcerty 5.0上的scjp模拟题,比实际考试水平如何?
  • SCJP的模拟题
  • SCJP模拟题哪里有 ?
  • linux iis7站长之家
  • SCJP模拟题 about modifier
  • SCJP模拟题哪有下载的,越多越好!!!
  • 一道scjp模拟题,请赐教。
  • 送分,谁能给我scjp1.4的模拟题,100分
  • SCJP模拟题 about Exception
  • SCJP 模拟题一道(2)
  • 鉴于scjp的模拟题大部分没有答案或不是很准确,我打算做个网站大家一起做题,同意者跟贴
  • 请教一道SCJP的模拟题?
  • SCJP模拟题 about Thread
  • SCJP模拟题 about String Array
  • SCJP模拟题 about Default Constructor
  • 两道SCJP模拟题,请教
  • 有一道SCJP的模拟题不会,请各位大大赐教
  • 有一个SCJP模拟题不懂,请各位大大指教
  • 请教:哪里有SCJP的试题可以下载?
  • 请教scjp中的问题
  • 请教如何备考scjp 认证
  • 想考scjp,请教几个问题。。。。。。。。。。。。。。。
  • 请教大家一道scjp的继承(is a)的问题?
  • 请教一道SCJP的考题,谢谢。
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 小弟想考scjp,贡献一些scjp考试的网址?
  • 我一个伙计考过SCJP一个多月了,怎么SCJP的证书还没有来呀?到哪里问去呀?
  • 过了SCJP和没过SCJP的都请进来,谢谢!
  • 我一直搞不清什么sl275与scjp1.2,scjp1.4的关系?那位能说说么
  • [提议] 既然考scjp的人这么对,提议设立scjp专栏,响应的进来领分!
  • 英文不是很好,为了考SCJP,好多地方看英文书,概念什么的比较模糊,哪有详细的中文的Java语言教程呀?最好和SCJP想符合的,别告诉我《Think in Java》呀!那本书我烦透了!
  • 检验你的SCJP能力!!!来自SUN的SCJP题库中的一道经典线程题目,你能做出正确的答案吗???
  • 谁有scjp练习题,越新越好?谢了
  • 险过scjp
  • 50分求助:哪儿能搞到SCJP的教程资料与试题资料!!!!!
  • 请推荐一些SCJP认证书籍和其他资料
  • 求助!本人下个星期考SCJP急需好的题库!高分求教!
  • —— SCJP认证相关问题 ——
  • 谁能告诉我SCJP考题的网址吗?
  • SCJP
  • 请问scjp/scjd和高程比,哪个分量重些啊?
  • *考过scjp的给个意见*
  • 在考SCJP中,很多人说的104和147指的是什么?
  • 通过了SCJP认证以后,还能干什么?
  • 寻找scjp认证考试方面的资料,培训资料和试题,谢谢!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3