Java - 为什么没有基于返回类型的方法重载? [英] Java - why no return type based method overloading?

查看:124
本文介绍了Java - 为什么没有基于返回类型的方法重载?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道这是不可能的,但任何人都可以提供一个理论,为什么Java选择不支持这个?我问的是因为我遇到了一个情况,我认为会很高兴。

I know this is not possible but can anyone provide a theory as to why Java chose not to support this? I am asking because I just ran into a situation where I think it would be nice to have.

推荐答案

因为您不需要在Java中捕获方法的返回值,在这种情况下,编译器无法决定使用哪个重载。例如

Because you are not required to capture the return value of a method in Java, in which case the compiler can not decide which overload to use. E.g.

boolean doSomething() { ... }

int doSomething() { ... }

doSomething(); // which one to call???

这篇关于Java - 为什么没有基于返回类型的方法重载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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