Skip to content

Instantly share code, notes, and snippets.

@darrenbkl
Created January 22, 2020 11:31
Show Gist options
  • Save darrenbkl/34f91ecc0548357ea07874fc4c413c6b to your computer and use it in GitHub Desktop.
Save darrenbkl/34f91ecc0548357ea07874fc4c413c6b to your computer and use it in GitHub Desktop.
List<Number> numList = new ArrayList<Number>(); // OK
List<Number> intList = new ArrayList<Integer>(); // Compilation Error: incompatible types
List<Number> objList = new ArrayList<Object>(); // Compilation Error: incompatible types
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment