私は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
クラス:私はこのように私のPerson
Sをインスタンス化することができるようにしたい
public class Person {
public String firstname;
public String lastname;
public Person() {}
public Person(String firstname, String lastname) {
this.firstname = firstname;
this.lastname = lastname;
}
}
:
PersonFactory<Person> personFactory = Person::new;
Person p = personFactory.create(); // does not work
Person p = personFactory.create("firstname", "lastname"); // works
私はJava coを作成する方法はありますかmpilerは自動的にPersonFactory.create()
の署名を照合して正しいコンストラクタを選択しますか?
いいえ。唯一の賢明な方法は、 'this.create行うことである(「someDefaultFirstNameを」、「someDefaultLastName」) ; ' –