Skip to content

Instantly share code, notes, and snippets.

@sergioceron
Created March 10, 2014 21:44
Show Gist options
  • Save sergioceron/9475068 to your computer and use it in GitHub Desktop.
Save sergioceron/9475068 to your computer and use it in GitHub Desktop.
New initialization way to collections in java
List<String> list = new ArrayList<String>() {
{
add("String A");
add("String B");
add("String C");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment