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.
这篇关于方法是否隐藏了一种多态性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:方法是否隐藏了一种多态性?
基础教程推荐
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- Maven:无效的目标版本:10 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- JPA惰性列表上的流 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
