在看关于反射的内容 但是看API里面 Type的描述只有 Type 是 Java 编程语言中所有类型的公共高级接口。它们包括原始类型、参数化类型、数组类型、类型变量和基本类型。
并没有任何的一个方法 是空的吗?
但是有好几个子接口
刚在eclipse找个显示的源码了 但是更加糊涂了 接口不是不能有实例方法吗 他这个接口里面的有方法 还有返回值啊!
public interface Type {
/**
* Returns a string describing this type, including information
* about any type parameters.
*
* @implSpec The default implementation calls {@code toString}.
*
* @return a string describing this type
* @since 1.8
*/
default String getTypeName() {
return toString(); // 为什么接口里面 还有返回值啊 和我看的东西冲突啊
}
}
At_pang
相关分类