标签:style blog java color 使用 strong
比如说将Cat类型转换为Animal类型,即子类型转换为父类型。对于向上类型转换,不需要显式使用强制类型转换。
1.Cat cat = new Cat (); 2.Animal animal = cat;第二行代码为向上类型转换。
比如将Animal类型转换为Cat类型,即将父类型转换为子类型。对于向下类型转换,必须要显式使用强制类型转换。
1.Animal a = new Cat(); 2.Cat cat = (Cat) a;第二行代码将Animal类型强制转换为Cat型,为向下类型转换。
public class PolyTest2 { public void run(BMW bmw) { bmw.run(); } public void run(QQ qq) { qq.run(); } public static void main (String[] args) { PolyTest2 test = new PolyTest2(); QQ qq = new QQ (); test.run (qq); BMW bmw = new BMW(); test.run (bmw); } } class Car { public void run() { System.out.println ("car is runing"); } } class BMW extends Car { public void run () { System.out.println ("BMW is runing"); } } class QQ extends Car { public void run () { System.out.println ("QQ is runing"); } }以上代码是不使用多态的情况,PolyTest2这个类中的run方法既要处理BWM类中的run方法,又要处理QQ类中的run方法,不使用多态的话就要针对不同的对象逐一定义方法。若一个类有很多很多子类,那么代码量是非常庞大的。因此,这时候多态就非常有用了。
public class PolyTest2 { /* public void run(BMW bmw) { bmw.run(); } public void run(QQ qq) { qq.run(); } */ <strong> public void run (<span style="color:#FF0000;">Car car</span>) { car.run(); }</strong> public static void main (String[] args) { PolyTest2 test = new PolyTest2(); Car car = new QQ (); //Polymorphism test.run (car); BMW bmw = new BMW(); test.run (bmw); //use upcast } } class Car { public void run() { System.out.println ("car is runing"); } } class BMW extends Car { public void run () { System.out.println ("BMW is runing"); } } class QQ extends Car { public void run () { System.out.println ("QQ is runing"); } }
以上是使用多态的代码,在子类繁多的情况下就大有用处了。代码虽然简单,认真体会其中的妙处,对写高质量的代码应该会有帮助!
标签:style blog java color 使用 strong
原文地址:http://blog.csdn.net/liangcaiyun2013/article/details/37743247