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

SCJP(YY3)

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

    本文导语:  What is the output of the following program?  1. class Test {  2. void show() {  3. System.out.println("non-static method in Test");  4. }  5. }  6. public class Q3 extends Test {  7. static void show() {  8. System.out.println("Overridden non...

What is the output of the following program? 

1. class Test { 
2. void show() { 
3. System.out.println("non-static method in Test"); 
4. } 
5. } 

6. public class Q3 extends Test { 

7. static void show() { 
8. System.out.println("Overridden non-static method in Q3"); 
9. } 

10. public static void main(String[] args) { 
11. Q3 a = new Q3(); 
12. } 
13 } 

a. Compilation error at line 2. 
b. Compilation error at line 7. 
c. No compilation error, but runtime exception at line 2. 
d. No compilation error, but runtime exception at line 7. 

答案是B,为什么呢?

You are creating a ToolBase class which will be extended by other programmers. The ToolBase class contains a single abstract method, createTool. 

Which of the following statements are true? 

a. The ToolBase class must be declared abstract. 
b. Classes extending ToolBase must not be declared abstract. 
c. The ToolBase class must not be declared final. 
d. The following variable declaration is illegal in any context "ToolBase myTB;" 

答案是A,C,D。我觉得D不对,因为TOOLBASE是抽象类啊。

|
关于override是有规则的
静态的方法不能覆盖成非静态,所以会编译错误

2)关于答案D,是对的,他是声明myTB是TOOLBASE型的,并没有对他初始化成抽象类的事例
如果toolbase mytb = new toobase()就肯定是错的
现在声明了,还没初始化,缺省初始化为NULL,所以合法
懂了吗?

|
1。不能用静态方法覆盖非静态方法
2。抽象类不能实例化,但“ToolBase myTB“只是声明了一个引用。
   

|
同上

    
 
 

您可能感兴趣的文章:

 
本站(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认证相关问题 —— iis7站长之家
  • 在考SCJP中,很多人说的104和147指的是什么?
  • 通过了SCJP认证以后,还能干什么?
  • 寻找scjp认证考试方面的资料,培训资料和试题,谢谢!


  • 站内导航:


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

    ©2012-2021,