Skip to content

Instantly share code, notes, and snippets.

@yenerm
Created May 17, 2020 22:57
Show Gist options
  • Save yenerm/89ac40cea24182ff4cd33671033f4ebd to your computer and use it in GitHub Desktop.
Save yenerm/89ac40cea24182ff4cd33671033f4ebd to your computer and use it in GitHub Desktop.
Java List <String>
List<String> list = new ArrayList<>();
list.add("First String");
list.add(6); // Compile error
String str = list.get(0); // no cast needed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment