Skip to content

Instantly share code, notes, and snippets.

@ThomasLau
Last active August 29, 2015 14:17
Show Gist options
  • Save ThomasLau/5c5c80094ba63a3dce23 to your computer and use it in GitHub Desktop.
Save ThomasLau/5c5c80094ba63a3dce23 to your computer and use it in GitHub Desktop.
an interesting quote in JDK(8).HashTable
/**
* The maximum size of array to allocate.
* Some VMs reserve some header words in an array.
* Attempts to allocate larger arrays may result in
* OutOfMemoryError: Requested array size exceeds VM limit
*/
private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment