微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Java 8 – 三元运算符返回函数不编译

有谁能告诉我为什么不编译?
public class TestClass {

    private boolean doThis = false;

    protected void fooThat() {}

    protected void fooThis() {}

    public void execute() {
        (doThis ? this::fooThis : this::fooThat).run();
    }
}

解决方法

你想要的是什么
(doThis ? this::fooThis : (Runnable) (this::fooThat)).run();

Java不能从方法名称推断你期望的类型?:返回.

我不知道这比谁好

if (doThis)
    fooThis();
else
    fooThat();

原文地址:https://www.jb51.cc/java/121575.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐