码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的静态方法能否被重写?

时间:2017-05-31 10:24:25      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:ret   city   icm   知识库   public   get   oid   知识   ase   

*非静态方法属于类的实例,是可以被子类重写,从而达到多态的效果;
静态方法属于类,是不能被重写,故而也不能实现多态。*

下面是具体的验证过程

首先,定义一个超类A,里边定义一个静态方法和一个非静态方法:

public class A {
    public void unstaticMethod() {
        System.out.println("SuperClass unstaticMethod");
    }

    public static void staticMethod() {
        System.out.println("SuperClass staticMethod");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

接下来,定义一个子类B,里边定义一个静态方法和一个非静态方法(形式上像是重写了超类的方法):

public class B extends A {
    public void unstaticMethod() {
        System.out.println("SunClass unstaticMethod");
    }

    public static void staticMethod() {
        System.out.println("SunClass staticMethod");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在接下来,我们进行测试

public class Test {
    @SuppressWarnings("static-access")
    public static void main(String[] args) {
        A a = new A();
        A a2 = new B();
        a.unstaticMethod();
        a2.unstaticMethod();
        a.staticMethod();
        a2.staticMethod();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

运行结果:

SuperClass unstaticMethod
SunClass unstaticMethod
SuperClass staticMethod
SuperClass staticMethod
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

从运行结果,我们可以知道,对于非静态方法,实现了多态的效果,而静态方法却没有。

Java中的静态方法能否被重写?

标签:ret   city   icm   知识库   public   get   oid   知识   ase   

原文地址:http://www.cnblogs.com/801234567com/p/6921870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!