且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

java中的所有方法都是隐含的虚拟

更新时间:2022-11-24 13:47:39

所有非静态,非最终和非私有方法在Java中默认是虚拟的。但是,JVM足够聪明,只能找到只有一个给定方法实现的类,并将其转换为静态绑定。



这样你就不必记住虚拟关键字(由于在C ++中的析构函数中缺少虚拟而经历过内存泄漏?),而性能不会受到太大影响。 / p>

If there are no compile time binding in java, do this mean all binding are done at runtime?

But as per OOPs concept for runtime binding, functions must have virtual keyword..ARE all methods implicitly virtual in java or is there any compile time binding exist in java

If there is any compile time binding, can you give me some specific situation, or links to further information

  1. Static (There is no meaning of binding here as static does not belongs to object)
  2. final (this is not a valid point as it can be achived in another way)

All non-static, non-final and non-private methods are virtual by default in Java. However JVM is clever enough to find classes having only one implementation of given method and turn it into static binding.

This way you don't have to remember about virtual keyword (ever experienced memory leak due to missing virtual on destructor in C++?) while the performance is not impacted that much.