当前位置:  开发笔记 > 编程语言 > 正文

默认方法中的自动构造函数匹配

如何解决《默认方法中的自动构造函数匹配》经验,为你挑选了1个好方法。

我有一个PersonFactory如下界面:

@FunctionalInterface
public interface PersonFactory

{ P create(String firstname, String lastname); // Return a person with no args default P create() { // Is there a way I could make this work? } }

Person类:

public class Person {
    public String firstname;
    public String lastname;

    public Person() {}

    public Person(String firstname, String lastname) {
        this.firstname = firstname;
        this.lastname = lastname;
    }
}

我希望能够Person像这样实例化我的:

PersonFactory personFactory = Person::new;

Person p = personFactory.create(); // does not work
Person p = personFactory.create("firstname", "lastname"); // works

有没有办法让Java编译器通过匹配签名来自动选择正确的构造函数PersonFactory.create()



1> Tunaki..:

一种方法是拥有以下内容:

default P create() {
    return create(null, null);
}

但我不确定那是你想要的.问题是你不能使方法引用引用2种不同的方法(或构造函数).在这种情况下,您希望Person::new引用不带参数的构造函数带有2个参数的构造函数,这是不可能的.

当你有:

@FunctionalInterface
public interface PersonFactory

{ P create(String firstname, String lastname); }

并使用它

PersonFactory personFactory = Person::new;
Person p = personFactory.create("firstname", "lastname");

你必须意识到方法引用Person::new是指带有2个参数的构造函数.下一行只是通过传递参数来调用它.

您还可以使用lambda表达式更明确地编写它:

PersonFactory personFactory = (s1, s2) -> new Person(s1, s2); // see, we have the 2 Strings here
Person p = personFactory.create("firstname", "lastname");

推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有