问:为什么包含类的名称会出现两次?
上下文:我生成代码,目标是获取字段的声明,如源代码中所写(完全合格,但我需要类型参数):test.Foo.Bar<java.lang.String>
package test;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
public class Foo
{
public static class Bar<TYPE> {}
private Bar<String> bar;
public static void main(String[] args) throws Exception
{
Field field = Foo.class.getDeclaredField("bar");
Type genericType = field.getGenericType();
Type type = field.getType();
System.out.println("genericType: " + genericType.getTypeName());
System.out.println(" type: " + type.getTypeName());
}
}
输出:
genericType: test.Foo.test.Foo$Bar<java.lang.String>
type: test.Foo$Bar
更新: 谢谢大家的意见。由于此问题已标记为重复,因此我发布了当前的工作解决方案over there。
答案 0 :(得分:3)
genericType是ParameterizedTypeImpl的实例
toString()方法返回ownerType类的名称,然后返回rawType classname。
反编译的代码
public String toString() {
StringBuilder var1 = new StringBuilder();
if(this.ownerType != null) {
if(this.ownerType instanceof Class) {
var1.append(((Class)this.ownerType).getName()); //<---
} else {
var1.append(this.ownerType.toString());
}
var1.append(".");
if(this.ownerType instanceof ParameterizedTypeImpl) {
var1.append(this.rawType.getName().replace(((ParameterizedTypeImpl)this.ownerType).rawType.getName() + "$", ""));
} else {
var1.append(this.rawType.getName()); //<------------
}