有没有人知道使用CodeModel生成以下泛型方法声明:
public <T> T getValue(Class<T> clazz){...}
用法:
ValueType value = getValue(ValueType.class);
似乎不会被现有的实施处理。
我知道我可以按如下方式处理代码,但需要强制转换:
public Object getValue(Class class){...}
用法:
ValueType value = (ValueType)getValue(ValueType.class);
显然,由于演员阵容,这有点乱。
答案 0 :(得分:11)
使用Object
返回类型创建方法,生成方法,然后覆盖返回类型。
final JDefinedClass exampleClass = codeModel._class( "com.example.ExampleClass" );
final JMethod method = exampleClass.method( JMod.PUBLIC, Object.class, "getValue" );
final JTypeVar t = method.generify( "T" );
method.type( t );
method.param( codeModel.ref( Class.class ).narrow( t ), "type" );
method.body()._return(JExpr._null());