Last active
August 29, 2015 14:17
-
-
Save ThomasLau/5c5c80094ba63a3dce23 to your computer and use it in GitHub Desktop.
an interesting quote in JDK(8).HashTable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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