多态理解

Posted chenligeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多态理解相关的知识,希望对你有一定的参考价值。

多态就是接口在不同实例的不同表现形式

就像打印机一样有黑白的打印机,也有彩色的打印机

技术图片

 

下面附一张照片


public class DT {
public static void main(String[] args) {
show(new Cat());
show(new dog());

Animal animal = new Cat(); //向上转型
animal.eat();
Cat c = (Cat)animal;//向下转型
c.work();
}
public static void show(Animal animal) {
animal.eat();
//类型判断
if (animal instanceof Cat) {
Cat c = (Cat)animal;
c.work();
}else if (animal instanceof dog) {
dog d = (dog)animal;
d.work();
}{

}
}
}
abstract class Animal{
abstract void eat();
}

class Cat extends Animal{
public void eat() {
System.out.println("吃鱼");
}
public void work() {
System.out.println("抓老鼠");
}
}
class dog extends Animal{
public void eat() {
System.out.println("吃骨头");
}
public void work() {
System.out.println("看家");
}
}

以上是关于多态理解的主要内容,如果未能解决你的问题,请参考以下文章

初识多态 简单理解

java的多态怎么理解啊,多态有啥用途。

Python中的多态如何理解?(转帖,让我很理解。)

java多态理解和底层实现原理剖析

PHP 多态理解

PHP 多态理解