Skip to content

Instantly share code, notes, and snippets.

@darrenbkl
Created January 16, 2020 15:01
Show Gist options
  • Save darrenbkl/479f699607ba1fe179510f9a2c5645ae to your computer and use it in GitHub Desktop.
Save darrenbkl/479f699607ba1fe179510f9a2c5645ae to your computer and use it in GitHub Desktop.
List intList = new ArrayList<Integer>(); // raw type warning
List<String> strList = intList; // no warning
intList.add(new Integer(3));
String x = strList.get(0); // error: ClassCastException
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment