性能优化--Array.equals()方法会判断注解的顺序,如果子类重写了父类的注解,虽然两者数组内部元素一样的,但是由于顺序不一样,这里会返回false,额外走了else的逻辑。 二者只会存在注解数组元素多或者少或者顺序不一致的情况,不会存在长度相同而元素不一致的情况。因此只用判断二者长度是否相等即可

This commit is contained in:
会飞的行李 2025-03-20 23:54:51 +08:00
parent 099ea19c97
commit 58e2f4b02f

View File

@ -103,7 +103,7 @@ public class CombinationAnnotationElement implements AnnotatedElement, Serializa
parseDeclared(declaredAnnotations);
final Annotation[] annotations = element.getAnnotations();
if (Arrays.equals(declaredAnnotations, annotations)) {
if (declaredAnnotations.length == annotations.length) {
this.annotationMap = this.declaredAnnotationMap;
} else {
this.annotationMap = new TableMap<>();