gpt4 book ai didi

java - 如何手动创建T类型的实例?

转载 作者:太空宇宙 更新时间:2023-11-04 12:13:48 25 4
gpt4 key购买 nike

我有这个

public interface ScreenObject<PK> extends ScreenRenderable {

public PK getPrimaryKey();
public String getTypeName();
}

如何创建该对象的手动实例?我试过了

 ScreenObject<PK>  p2 = new ScreenObject<PK>("hello", "world");

但这行不通。求建议!提前致谢。

最佳答案

您无法为接口(interface)创建对象。为了创建一个对象,您应该提供一个实现类并实现所有抽象方法。

根据你的问题,你应该这样做

public class ImplClass<PK> implements ScreenObject<PK> {

// create a constructor with two String arguments

public ImplClass(String obj1, String obj2) {
//write your logic
}

// Do all the implementations for the abstract classes.
}

然后您可以通过以下方式创建实例

ScreenObject<Type Parameter> p2 = new ImplClass<> ("Hello", "World");

请引用here了解有关接口(interface)的更多信息

注意:PK 是一个类型参数,可让您编写通用代码。引用here了解更多详情

关于java - 如何手动创建T类型的实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39615738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com