java – Sun CodeModel泛型方法

前端之家收集整理的这篇文章主要介绍了java – Sun CodeModel泛型方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有人知道使用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());
原文链接:https://www.f2er.com/java/129819.html

猜你在找的Java相关文章