有没有人知道使用CodeModel生成以下泛型方法声明:
public <T> T getValue(Class<T> clazz){...}
用法:
ValueType value = getValue(ValueType.class);
似乎不是由现有的implmentation处理.
我知道我可以按如下方式处理代码,但它需要一个强制转换:
public Object getValue(Class class){...}
用法:
ValueType value = (ValueType)getValue(ValueType.class);
显然,由于演员阵容,这有点混乱.
解决方法
使用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());