Skip to content

Instantly share code, notes, and snippets.

@christherama
Last active November 2, 2016 14:54
Show Gist options
  • Save christherama/ec929d1384d6f2e50d98fc637b2df715 to your computer and use it in GitHub Desktop.
Save christherama/ec929d1384d6f2e50d98fc637b2df715 to your computer and use it in GitHub Desktop.
An empty ArrayList is created
public class ArrayList<E> {
transient Object[] elementData; // (1)
private static final Object[] EMPTY_ELEMENTDATA = {}; // (3)
public ArrayList() {
super();
this.elementData = EMPTY_ELEMENTDATA; // (2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment