如何生成具有以下签名的方法?

public <T extends MyClass> void doSomething(T t)

到目前为止,我有:
MethodSpec.methodBuilder("doSomething")
        .addModifiers(Modifier.PUBLIC)
        .addTypeVariable(TypeVariableName.get("T", MyClass.class))
        .build()

编辑这是上面的代码生成的(我不知道如何添加参数):
public <T extends Myclass> void doSomething()

最佳答案

将生成的TypeVariableName提取到变量中,以便可以重用其值

TypeVariableName typeVariableName = TypeVariableName.get("T", MyClass.class);

然后添加该类型的参数
MethodSpec spec = MethodSpec.methodBuilder("doSomething")
                            .addModifiers(Modifier.PUBLIC)
                            .addTypeVariable(typeVariableName)
                            .addParameter(typeVariableName, "t") // you can also add modifiers
                            .build();

08-06 05:22