1. 能否够重写静态方法
假设从重写方法会有什么特点来看,我们是不能重写静态方法的。尽管就算你重写静态方法,编译器也不会报错。也就是说,假设你试图重写静态方法,Java不会阻止你这么做,但你却得不到预期的结果(重写仅对非静态方法实用)。重写指的是依据执行时对象的类型来决定调用哪个方法,而不是依据编译时的类型。让我们猜一猜为什么静态方法是比較特殊的?由于它们是类的方法,所以它们在编译阶段就使用编译出来的类型进行绑定了。使用对象引用来訪问静态方法仅仅是Java设计者给程序猿的自由。我们应该直接使用类名来訪问静态方法,而不要使用对象引用来訪问。
让我们看一个样例,来看看重写静态方法会发生什么:
class SuperClass{ ...... public static void staticMethod(){ System.out.println("SuperClass: inside staticMethod"); } ...... } public class SubClass extends SuperClass{ ...... //overriding the static method public static void staticMethod(){ System.out.println("SubClass: inside staticMethod"); } ...... public static void main(String []args){ ...... SuperClass superClassWithSuperCons = new SuperClass(); SuperClass superClassWithSubCons = new SubClass(); SubClass subClassWithSubCons = new SubClass(); superClassWithSuperCons.staticMethod(); superClassWithSubCons.staticMethod(); subClassWithSubCons.staticMethod(); ... } }
输出:
<pre name="code" class="java">SuperClass: inside staticMethod SuperClass: inside staticMethod SubClass: inside staticMethod
注意第二行输出。如果staticMethod方法被重写了,它的结果应该和第三行一样,也是调用执行时的类型SubClass的staticMethod(),而不是SuperClass的staticMethod()方法。这也就证明了静态方法是在编译阶段使用了编译类型信息,进行静态绑定的。
2.synchronizedkeyword是不能继承的,也就是说,基类的方法synchronized f(){} 在继承类中并不自己主动是synchronized f(){},而是变成了f(){}。继承类须要你显式的指定它的某个方法为synchronized方法;
时间: 2024-11-05 11:28:55