Skip to content

Instantly share code, notes, and snippets.

@lichenbo
Created July 10, 2013 06:41
Show Gist options
  • Save lichenbo/5963934 to your computer and use it in GitHub Desktop.
Save lichenbo/5963934 to your computer and use it in GitHub Desktop.
public class ArrayList<E> extends AbstractList<E>
implements List<E>, RandomAccess, Cloneable, java.io.Serializable
{
private static final long serialVersionUID = 8683452581122892189L;
private transient Object[] elementData;
private int size;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment