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
。
这里发生了什么?