Skip to content

Instantly share code, notes, and snippets.

@Krasnyanskiy
Last active April 9, 2016 17:37
Show Gist options
  • Save Krasnyanskiy/80f824c3fbf3364967b94ff3a2f6afd2 to your computer and use it in GitHub Desktop.
Save Krasnyanskiy/80f824c3fbf3364967b94ff3a2f6afd2 to your computer and use it in GitHub Desktop.
-java: array types
int[] ints = {1, 2, 3, 4, 5, 6};
Object[] objects = (Object[]) ints; // error! cannot cast int[] to Object[]
@Krasnyanskiy
Copy link
Author

Autoboxing does not work here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment