Skip to content

Instantly share code, notes, and snippets.

@darrenbkl
Created January 16, 2020 15:01
Show Gist options
  • Save darrenbkl/a1e760088948b972ec7084ccff61d109 to your computer and use it in GitHub Desktop.
Save darrenbkl/a1e760088948b972ec7084ccff61d109 to your computer and use it in GitHub Desktop.
[] strArray = { "a", "b };
Object[] objArray = strArray;
System.out.println(objArray instanceof String[]); // true, objArray is reified to String[]
Number number = 1;
System.out.println(number.getClass()); // java.lang.Integer, number is reified to Integer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment