编译时多态与运行时多态之间的区别
多态是其中之一,也是最重要的 面向对象(OOP)概念。这是一个概念,我们可以通过多种方式执行单个任务。有两种多态,一种是编译时多态,另一种是运行时多态。
方法重载是编译时多态的一个例子,方法重写是运行时多态的一个例子。
序号 | 键 | 编译时多态 | 运行时多态 |
---|---|---|---|
1 | 基础 | 编译时多态表示绑定发生在编译时 | 在运行时我们才知道将调用哪个方法 |
2 | 静态/动态绑定 | 可以通过静态绑定实现 | 可以通过动态绑定实现 |
4. | 继承 | 不涉及继承 | 涉及继承 |
5 | 示例 | 方法重载是编译时多态的示例 | 方法重写是运行时多态的示例 |
编译时多态的示例
public class Main { public static void main(String args[]) { CompileTimePloymorphismExample obj = new CompileTimePloymorphismExample(); obj.display(); obj.display("Polymorphism"); } } class CompileTimePloymorphismExample { void display() { System.out.println("In Display without parameter"); } void display(String value) { System.out.println("In Display with parameter" + value); } }
运行时多态的示例
public class Main { public static void main(String args[]) { RunTimePolymorphismParentClassExample obj = new RunTimePolymorphismSubClassExample(); obj.display(); } } class RunTimePolymorphismParentClassExample { public void display() { System.out.println("Overridden Method"); } } public class RunTimePolymorphismSubClassExample extends RunTimePolymorphismParentExample { public void display() { System.out.println("Overriding Method"); } }
广告