如何让javapoet生成下面的Java代码?
class B<T extends U> implements A<T> {
}
我知道有一个class WildcardTypeName
,但是它只能生成吗? extends U
或? super U
。
我想要的是T extends U
答案 0 :(得分:0)
在您的描述中,U
和A
应该是存在类。您可以使用以下代码。
public static void main(String[] args) throws IOException {
TypeVariableName t = TypeVariableName.get("T").withBounds(U.class);
TypeSpec type = TypeSpec.classBuilder("B")
.addTypeVariable(t)
.addSuperinterface(ParameterizedTypeName.get(ClassName.get(A.class), t))
.build();
JavaFile.builder("", type).build().writeTo(System.out);
}
其输出为
import yourpackage.A;
import yourpackage.U;
class B<T extends U> implements A<T> {
}