为什么HandlerExcutionChain类中的属性有一个拦截器的数组和一个拦截器的集合,有什么道理?

public class HandlerExecutionChain {

private static final Log logger = LogFactory.getLog(HandlerExecutionChain.class);

private final Object handler;

private HandlerInterceptor[] interceptors;

private List<HandlerInterceptor> interceptorList;

private int interceptorIndex = -1;

HandlerExecutionChain的属性为什么有一个拦截器的数组还有一个拦截器的集合,作用是啥,虽然这个类中的方法里有数组与集合的相互转换,但是实在不明白为什么设置一个数组又设置一个集合?求大神告知!

https://www.cnblogs.com/GooPolaris/p/7114367.html