Does anyone know the double data type limits at java for S60 5ed?
Thanks
Does anyone know the double data type limits at java for S60 5ed?
Thanks
They are the same limits in all versions of Java, and are not platform dependent.
The smallest positive (non-zero) value is Double.MIN_VALUE (4.9406564584124654e-324).
The largest positive finite value is Double.MAX_VALUE (1.7976931348623157e+308).
Minimun and maximum negative values are identical, except for the sign.
Graham.