对于两个不同的类型元素

时间:2017-06-22 19:19:06

标签: java annotations annotation-processing annotation-processor

TypeMirror listType = elementUtils.getTypeElement("java.util.List").asType();
TypeMirror thisType = typeUtils.asElement(element.asType()).asType();
boolean isSame = typeUtils.isSameType(listType, thisType);

listType = java.util.List<E>thisType = User,但我仍然得到isSame = true

这里发生了什么?

0 个答案:

没有答案