概念
1、动态绑定是指在运行过程中根据对象的类型进行绑定。
2、JVM在运行过程中决定调用哪个对象的过程称为动态绑定。
动态绑定的过程
3、虚拟机提取对象实际类型的方法表,并搜索方法签名、调用方法。
实例
public class Main { public static void main(String[] args){ A b = new B(); b.print(); } } class A{ public void print(){ System.out.println("A"); } } class B extends A{ @Override public void print(){ System.out.println("B"); } }
以上就是java动态绑定的理解,希望对大家有所帮助。更多Java学习指路:Java基础
本教程操作环境:windows7系统、java10版,DELL G3电脑。