美文网首页
多态坑题

多态坑题

作者: 迷人的酋长 | 来源:发表于2018-09-01 11:52 被阅读0次
class A {  
     public String show(D obj){  
            return ("A and D");  
     }   
     public String show(A obj){  
            return ("A and A");  
     }   
}   
class B extends A{  
    public String show(B obj){  
            return ("B and B");  
     }  
     public String show(A obj){  
            return ("B and A");  
     }   
     
}  
class C extends B{}   
class D extends B{}

class  DynamicTest
{   
    public static void main(String[] args){
    
    A a1 = new A();  
    A a2 = new B();  
    B b = new B();  
    C c = new C();   
    D d = new D();   
    System.out.println(a1.show(b));  
    System.out.println(a1.show(c));  
    System.out.println(a1.show(d));  

    System.out.println(a2.show(b));                                         
    System.out.println(a2.show(c));  
    System.out.println(a2.show(d));  
    
    System.out.println(b.show(b));   
    System.out.println(b.show(c));   
    System.out.println(b.show(d));   

实际上这里涉及方法调用的优先级问题,优先级由高到低依次为:

this.show()--->super.show()-->this.show((super)0)-->super.show((super)0)

    System.out.println(a1.show(b));       A and A
    System.out.println(a1.show(c));       A and A
    System.out.println(a1.show(d));       A and D

    System.out.println(a2.show(b));       B and A                                  
    System.out.println(a2.show(c));       B and A
    System.out.println(a2.show(d));       A and D
    
    System.out.println(b.show(b));        B and B
    System.out.println(b.show(c));        B and B
    System.out.println(b.show(d));        A and D

相关文章

  • 多态坑题

    实际上这里涉及方法调用的优先级问题,优先级由高到低依次为:

  • 坑题

  • 设计模式

    教我该课的是贺ZJ老师 第一大题是概念题[名词解释] 桥梁模式 备忘录模式 多态 松耦合 第二大题是论述题 类与类...

  • BUUCTF re:Youngter-drive

    坑啊,跳了一个双线程的坑,结果还有一个坑对,这个题我觉得应该算是一个多线程的题查壳是发现加壳了,而且是upx壳,脱...

  • 1.9 多态基本概念

    本小节知识点: 【了解】什么是多态? 【掌握】多态的条件 【了解】多态的优点 1.什么是多态? 什么是多态:多态就...

  • ruby on rails的一些小坑

    坑一 写了一个页面的查询,用的是ransack. 这个是一个多态关联.在controller中使用ransack查...

  • C++ 的多态(Polymorphism), virtual f

    多态 c++支持两种多态,编译时多态和运行时多态但其实编译时多态根本不是真正的多态,编译时多态就是函数的重载,ov...

  • 详解Java多态

    详解Java多态 多态定义 多态性是指允许不同类的对象对同一消息作出响应。多态性包括参数化多态性和包含多态性。多态...

  • 多态

    1.多态 1.多态 1.1 要点 多态是方法的多态,不是属性的多态 多态的存在有三个必要条件:继承;方法重写;父类...

  • java多态面试题

    java多态性 多态分两种: (1) 编译时多态(设计时多态):方法重载。 (2) 运行时多态:JAVA运...

网友评论

      本文标题:多态坑题

      本文链接:https://www.haomeiwen.com/subject/upoywftx.html