Skip to content

Instantly share code, notes, and snippets.

@dmikurube
Created March 30, 2017 09:06
Show Gist options
  • Save dmikurube/5f16632ed34d3e3c009b606907091684 to your computer and use it in GitHub Desktop.
Save dmikurube/5f16632ed34d3e3c009b606907091684 to your computer and use it in GitHub Desktop.
Integer calculation with long
public class JavaLongCalc {
public static void main(String[] args) {
final long x = 50 * 1024 * 1024 * 1024;
final long y = 50L * 1024 * 1024 * 1024;
final long z = 50L * 1024L * 1024L * 1024L;
System.out.println(x);
System.out.println(y);
System.out.println(z);
}
}
@dmikurube
Copy link
Author

-2147483648
53687091200
53687091200

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