Skip to content

Instantly share code, notes, and snippets.

@Concers
Created February 17, 2020 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Concers/a8dd90462acd66d82649e8fe3df66170 to your computer and use it in GitHub Desktop.
Save Concers/a8dd90462acd66d82649e8fe3df66170 to your computer and use it in GitHub Desktop.
Byte | 8 bit | -128 (-2^7) | 127 (2^7 - 1)
Short | 16 bit | -32768 (-2^15) | 32767 (2^15 - 1)
Int | 32 bit | -2,147,483,648 (-2^31) | 2,147,483,647 (2^31 - 1)
Long | 64 bit | -9,223,372,036,854,775,808 (-2^63) | 9,223,372,036,854,775,807 (2^63 - 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment