我想创建一个方法来构造作为参数接收的类的对象,如下所示:
public static <T extends MyAbstractClass> T makeObject(Class<T> c){
ObjectReceivedFromService orfs = getObjectFromService();
Constructor<T> constr = c.getConstructor(ObjectReceivedFromService.class);
return constr.newInstance(orfs);
}
有没有办法确保编译时存在这个特定的构造函数? 如果可能的话,我还想使用接口而不是抽象类。
谢谢
答案 0 :(得分:2)
你可以期待不是类,而是构造函数本身作为参数:
public static <T extends AnyInterface> T makeObject(Function<ObjectReceivedFromService, T> constructor){
ObjectReceivedFromService orfs = getObjectFromService();
return constructor.apply(orfs);
}
调用方法:
makeObject(MyImplementation::new)
最后,通过使用构造函数的方法句柄,任何构造函数都可以用作函数。