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

SCJP多态题一

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

    本文导语:  这道题我看注释可以看懂,但是发现多态的规则实在太多太乱,心里比较糊 想请各位高手详细解释一下 public class PrivateTest {            public static void main(String s[])            {              new P...

这道题我看注释可以看懂,但是发现多态的规则实在太多太乱,心里比较糊
想请各位高手详细解释一下

public class PrivateTest
{
           public static void main(String s[])
           {
             new PTSuper().hi();  // Prints always Super
             new PTSub().hi();
// Prints Super when subclass doesn't have hi method
               // Prints Sub when subclass has hi method
    
PTSuper sup;
             sup = new PTSub();
             sup.hi();
// Prints Super when subclass doesn't have hi method
               // Prints Sub when subclass has hi method
           }
}
class PTSuper
{
           public void hi()
           {
// Super-class implementation always
// calls superclass hello
             hello();
           }
  
           private void hello()
           {
// This method is not inherited by subclasses,
// but exists in them.
             // Commenting out both the methods in the subclass
// show this.
             // The test will then print "hello-Super" for all three calls
             // i.e. Always the super-class implementations are called
             System.out.println("hello-Super");
           }
}
class PTSub extends PTSuper
{
           public void hi()
           {
// This method overrides super-class hi,
// calls subclass hello
             try
             {
               hello(); 
             }
             catch(Exception e) { }
           }

           void hello() throws Exception
           {
// This method is independent from super-class hello
             // Evident from, it's allowed to throw Exception
             System.out.println("hello-Sub");
           }
}

|
《scjp认证套题解析》就在csdn的文档区,也可以看cherami的专区

    
 
 

您可能感兴趣的文章:

 
本站(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