6.2 方法调用绑定Method call binding



is connecting a method call to a method body.

早绑定 vs. 晚绑定(动态/运行时刻)

Java中所有的绑定都是晚绑定,除了final的方法.

Case Study: Shapes.java

多态性为我们带来了扩展性.


Next Page