默认方法中的自动构造函数匹配
Automatic constructor matching in default method
我有一个PersonFactory
界面如下:
@FunctionalInterface
public interface PersonFactory<P extends Person> {
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
class:
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<Person> personFactory = Person::new;
Person p = personFactory.create(); // does not work
Person p = personFactory.create("firstname", "lastname"); // works
有没有办法让 Java 编译器通过匹配 PersonFactory.create()
的签名自动选择正确的构造函数?
一种方法是:
default P create() {
return create(null, null);
}
但我不确定这是否是您想要的。问题是您不能使方法引用引用 2 个不同的方法(或构造函数)。在这种情况下,您希望 Person::new
引用不带参数的构造函数 和 带 2 个参数的构造函数,这是不可能的。
当你有:
@FunctionalInterface
public interface PersonFactory<P extends Person> {
P create(String firstname, String lastname);
}
并像
一样使用它
PersonFactory<Person> personFactory = Person::new;
Person p = personFactory.create("firstname", "lastname");
你必须意识到方法引用 Person::new
指的是带有 2 个参数的构造函数。下一行只是通过传递参数来调用它。
您也可以使用 lambda 表达式更明确地编写它:
PersonFactory<Person> personFactory = (s1, s2) -> new Person(s1, s2); // see, we have the 2 Strings here
Person p = personFactory.create("firstname", "lastname");
我有一个PersonFactory
界面如下:
@FunctionalInterface
public interface PersonFactory<P extends Person> {
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
class:
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<Person> personFactory = Person::new;
Person p = personFactory.create(); // does not work
Person p = personFactory.create("firstname", "lastname"); // works
有没有办法让 Java 编译器通过匹配 PersonFactory.create()
的签名自动选择正确的构造函数?
一种方法是:
default P create() {
return create(null, null);
}
但我不确定这是否是您想要的。问题是您不能使方法引用引用 2 个不同的方法(或构造函数)。在这种情况下,您希望 Person::new
引用不带参数的构造函数 和 带 2 个参数的构造函数,这是不可能的。
当你有:
@FunctionalInterface
public interface PersonFactory<P extends Person> {
P create(String firstname, String lastname);
}
并像
一样使用它PersonFactory<Person> personFactory = Person::new;
Person p = personFactory.create("firstname", "lastname");
你必须意识到方法引用 Person::new
指的是带有 2 个参数的构造函数。下一行只是通过传递参数来调用它。
您也可以使用 lambda 表达式更明确地编写它:
PersonFactory<Person> personFactory = (s1, s2) -> new Person(s1, s2); // see, we have the 2 Strings here
Person p = personFactory.create("firstname", "lastname");