Is method hiding a form of Polymorphism?(方法是否隐藏了一种多态性?)
问题描述
多态是采取多种形式的能力.方法覆盖是运行时多态性.
Polymorphism is the ability to take many forms. Method overriding is runtime polymorphism.
我的问题是:
Java 中有没有类似静态多态的东西?
Is there anything like static polymorphism in Java?
方法隐藏可以被认为是多态的一种形式吗?
Can method hiding be considered a form of polymorphism?
在这个 问题的答案,据说静态方法不是多态的.这是什么原因?
In this question's answer, it is said that static methods are not polymorphic. What is the reason for that?
推荐答案
如果我们运行这个测试
class A {
static void x() {
System.out.println("A");
}
}
class B extends A {
static void x() {
System.out.println("B");
}
}
class Test {
public static void main(String[] args) throws Exception {
A a = new B();
a.x();
}
}
它将打印 A.如果方法 x() 是多态的,它将打印 B.
it will print A. If method x() were polymorphic, it would print B.
这篇关于方法是否隐藏了一种多态性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:方法是否隐藏了一种多态性?


- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 转换 ldap 日期 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 获取数字的最后一位 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01