首页 > 代码库 > java多态

java多态

面向对象编程有三大特性:封装、继承、多态。

多态指程序中定义的引用变量所指向的具体类型和通过该引用变量发出的方法调用在编程时并不确定,而是在程序运行期间才确定,即一个引用变量倒底会指向哪个类的实例对象,该引用变量发出的方法调用到底是哪个类中实现的方法,必须在由程序运行期间才能决定。因为在程序运行时才确定具体的类,这样,不用修改源程序代码,就可以让引用变量绑定到各种不同的类实现上,从而导致该引用调用的具体方法随之改变,即不修改程序代码就可以改变程序运行时所绑定的具体代码,让程序可以选择多个运行状态,这就是多态性。

多态:又叫动态绑定。多态分离做什么和怎么做,也就是说多态将接口与实现(行为)分离开来

 

1.向上转型:


 

 

向上转型:把对某个对象的引用视为对其基类类型的引用。又叫父类引用指向子类对象

class Fruit{    void eat(){}}class Apple extends Fruit{    void eat(){}}class Test{    Fruit fruit = new Apple();  //------向上转型(父类引用指向子类对象)}

 

2.动态绑定:


 

动态绑定:指在运行时根据对象的类型进行绑定。java中除了static方法、final方法(private也属于final)外,其他方法都是动态绑定。也就是说方法在使用时才会找到正确的方法体。

class Fruit{    void eat(){        System.out.println("Fruit eat");    }}class Apple extends Fruit{    void eat(){        System.out.println("Apple eat");    }}public class TestClass{    public static void main(String[] args){        Fruit fruit = new Apple();        fruit.eat();        //------动态绑定    }}output:Apple eat

 

3.多态的实现


 

实现条件:继承、向上转型 重写。

    自己感觉:继承不一定、还可以有接口。重写也可以不用,但若不用的话则多态的意义(使得接口有许多不同的实现)就不大了。

 

实现形式:继承、接口。  

   基于继承的实现机制主要表现在父类和继承该父类的一个或多个子类对某些方法的重写,多个子类对同一方法的重写可以表现出不同的行为。

class Fruit{    void eat(){        System.out.println("Fruit eat");    }}class Apple extends Fruit{    /*    重写父类方法,实现多态     */    void eat(){        System.out.println("Apple eat");    }}abstract class Car{    abstract void drive();}class Volvo extends Car{    /*    实现父类(抽象类)方法,实现多态     */    void drive(){        System.out.println("Volvo drive");    }}public class TestClass{    public static void main(String[] args){        Fruit fruit = new Apple();        fruit.eat();        Car car = new Volvo();        car.drive();    }}output:Apple eatVolvo drive

   在接口的多态中,指向接口的引用必须是指定这实现了该接口的一个类的实例程序,在运行时,根据对象引用的实际类型来执行对应的方法。

interface People{    String sayName();}class Lilei implements People{    /*    实现接口方法,实现多态     */    public String sayName(){        return "My name is Lilei";    }}class CreatePeople{    /*    匿名内部类也是实现接口多态的一种     */    public People getPeople(){        return new People() {            @Override            public String sayName() {                return "My name is Wangfang";            }        };    }}public class TestClass{    public static void main(String[] args){        People people1 = new Lilei();        People people2 = new CreatePeople().getPeople();        System.out.println(people1.sayName());        System.out.println(people2.sayName());    }}output:My name is LileiMy name is Wangfang

 

4.经典实例

 

 

 

 


 

public class A {    public String show(D obj) {        return ("A and D");    }    public String show(A obj) {        return ("A and A");    } }public class B extends A{    public String show(B obj){        return ("B and B");    }        public String show(A obj){        return ("B and A");    } }public class C extends B{}public class D extends B{}public class Test {    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("1--" + a1.show(b));        System.out.println("2--" + a1.show(c));        System.out.println("3--" + a1.show(d));        System.out.println("4--" + a2.show(b));        System.out.println("5--" + a2.show(c));        System.out.println("6--" + a2.show(d));        System.out.println("7--" + b.show(b));        System.out.println("8--" + b.show(c));        System.out.println("9--" + b.show(d));          }}output:1--A and A2--A and A3--A and D4--B and A5--B and A6--A and D7--B and B8--B and B9--A and D

 

5.reference

http://www.cnblogs.com/chenssy/p/3372798.html

http://blog.csdn.net/thinkGhoster/article/details/2307001

java多态