Java - 你能在Java覆盖静态方法吗?如果我在子类中创建相同的方法会产生编译错误么?

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net

不能,你不能在Java中覆盖静态方法,但你可以在子类中声明一个完全相同的方法,不会产生编译错误,这称为隐藏在Java中的方法。

你不能覆盖Java中的静态方法,因为方法覆盖基于运行时的动态绑定,静态方法在编译时使用静态绑定进行绑定。虽然可以在子类中声明一个具有相同名称和方法签名的方法,看起来可以在Java中覆盖静态方法,但实际上这是方法隐藏。Java不会在运行时解析方法调用,并且根据用于调用静态方法的Object类型,将调用相应的方法。这意味着如果你使用父类的类型来调用静态方法,那么静态方法将从父类中调用,另一方面如果你使用子类的类型来调用静态方法,则会调用来自子类的方法。简而言之,你无法在Java中覆盖静态方法。如果你使用像Eclipse或Netbeans这样的Java IDE,它们将显示警告静态方法应该使用类名而不是使用对象来调用,因为静态方法不能在Java中重写。

package chimomo.learning.java.code.staticmethod;

/**
 * Java program which demonstrate that we can not override static method in Java. 
 *
 * @author Created by Chimomo
 */
public class CanWeOverrideStaticMethod {
    public static void main(String[] args) {
        Screen screen = new ColorScreen();

        // If we can override static method, this should call method from child class.
        // IDE will show warning, static method should be called from classname.
        screen.show();
    }
}

/* ------ Running Results ------
Static method from parent class
*/
package chimomo.learning.java.code.staticmethod;

/**
 * @author Created by Chimomo
 */
public class Screen {
    /**
     * public static method which can not be overridden in Java
     */
    public static void show() {
        System.out.print("Static method from parent class");
    }
}
package chimomo.learning.java.code.staticmethod;

/**
 * @author Created by Chimomo
 */
public class ColorScreen extends Screen {
    /**
     * Static method of same name and method signature as existed in super class,
     * this is not method overriding instead this is called method hiding in Java. 
     */
    public static void show() {
        System.err.println("Overridden static method in Child Class in Java");
    }
}

此运行结果确认你无法覆盖Java中的静态方法,并且静态方法基于类型信息而不是基于Object进行绑定。如果要覆盖静态方法,则会调用子类或ColorScreen中的方法。我们不能覆盖静态方法,我们只能在Java中隐藏静态方法。创建具有相同名称和方法签名的静态方法称为Java隐藏方法。IDE将显示警告:“静态方法应该使用类名而不是使用对象来调用”, 因为静态方法不能在Java中重写。

你可能感兴趣的:(Java)