I feel silly asking this but I am not sure what the problem is.
long max_daily_bytes2 = 10 * (1024 * 1024 * 1024);
System.out.println(max_daily_bytes2);
Output:
-2147483648
What's causing this? Java longs should have a range of up to 9,223,372,036,854,775,807
Thanks!
long max_daily_bytes2 = 10 * (1024 * 1024 * 1024);
System.out.println(max_daily_bytes2);
Output:
-2147483648
What's causing this? Java longs should have a range of up to 9,223,372,036,854,775,807
Thanks!