开发者

Why double.MaxValue is larger than long.MaxValue?

开发者 https://www.devze.com 2022-12-27 02:20 出处:网络
both of them hold 8 bytes, but how come the max value for double is much greater than the max value of long? there is a 开发者_Python百科finite number of bits available, so how could you reach greater

both of them hold 8 bytes, but how come the max value for double is much greater than the max value of long? there is a 开发者_Python百科finite number of bits available, so how could you reach greater numbers with floating point variables?


It uses a different representation (floating point) using exponents and mantissa

For details see IEEE754


A double has something called an exponent, which is basically just a scaling factor. This allows the range of double to be much greater, but at the cost of precision.

A long is a simple integer value with no scaling factor.


Floating point numbers consist of a mantissa and an exponent, and the value of a floating point number is:

mantissa * 2exponent

The exponent in a Double is 11 bits, so the maximum value is of the magnitude 2211 - 1 = 21024, which is way more than the magnitude of a 64-bit signed double, which is 263-1.


Because floating-point representation is of lower precision. While long type can represent all integer numbers in the range from its minimum to maximum, double type can only represent some of it.

Since they occupy same amount of bits, the amount of numbers each is capable to express are nearly equal (actually, double can represent fewer numbers). Just the paces between these numbers are different.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号