Why double.MaxValue is larger than long.MaxValue?

2019-03-23 05:50发布

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 finite number of bits available, so how could you reach greater numbers with floating point variables?

标签: double
4条回答
霸刀☆藐视天下
2楼-- · 2019-03-23 06:06

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.

查看更多
唯我独甜
3楼-- · 2019-03-23 06:19

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.

查看更多
疯言疯语
4楼-- · 2019-03-23 06:25

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.

查看更多
神经病院院长
5楼-- · 2019-03-23 06:27

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

For details see IEEE754

查看更多
登录 后发表回答