本文介绍了在java中重写和重载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当你覆盖一个方法时,是否有人能告诉我是否也会考虑该方法的返回类型?我的意思究竟是当你重写一个方法时返回类型是否可以不同。我读到的某些地方就像重载一样不会受到多态性的影响。这是真的吗?

Can anyone tell me whether the return type of the method will also be considered when you are overriding a method? what i mean exactly is whether the return type can be different when you are overriding a method.and somewhere i read like overloading will not come under polymorphism. is this true?

推荐答案



你有没有读过关于泛型的东西?

Have you read anything about generics yet?




试试这样的事情:

Just try something like this:

展开 | 选择 | Wrap | 行号



这篇关于在java中重写和重载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 17:44