Skip to content

Instantly share code, notes, and snippets.

@samfcmc
Created August 4, 2018 14:50
Show Gist options
  • Save samfcmc/cdb026ab0439a1a91652a114cbfb87f3 to your computer and use it in GitHub Desktop.
Save samfcmc/cdb026ab0439a1a91652a114cbfb87f3 to your computer and use it in GitHub Desktop.
// Passing the capacity to the array list... Remember? :)
List<String> list = new ArrayList(2);
list.add("Test"); // This is right
list.add(2) // Compile time error... This list only accepts string elements
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment