ArrayList
作者:互联网
public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable{}
ArrayList继承自AbstractList类,实现了List接口,RandomAccess这个可随机访问的标记接口,Cloneable可克隆标记接口,和Serializable可序列化标记接口。
标签:标记,ArrayList,List,接口,Cloneable,Serializable 来源: https://www.cnblogs.com/xfeiyun/p/15026378.html