方法是否隐藏了一种多态性? [英] Is method hiding a form of Polymorphism?

查看:36
本文介绍了方法是否隐藏了一种多态性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

多态是采取多种形式的能力.方法覆盖是运行时多态性.

Polymorphism is the ability to take many forms. Method overriding is runtime polymorphism.

我的问题是:

  1. Java 中有没有类似静态多态的东西?

  1. 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.

这篇关于方法是否隐藏了一种多态性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆