Skip to content

Instantly share code, notes, and snippets.

@draftcode
Created December 4, 2011 10:29
Show Gist options
  • Select an option

  • Save draftcode/1429833 to your computer and use it in GitHub Desktop.

Select an option

Save draftcode/1429833 to your computer and use it in GitHub Desktop.
class Test {
public static void main(String[] args) {
Object[] array = new String[10];
Object o = array[0]; // OK
array[1] = new Integer(9); // Throw an ArrayStoreException.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment