tags:

views:

174

answers:

5

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?

+5  A: 

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

For details see IEEE754

stacker
http://en.wikipedia.org/wiki/Data_type#Machine_data_types
stacker
+3  A: 

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.

Mark Byers
A: 

What language is this? Long is only 4 bytes in some languages (C/C++ for example)

cthom06
`long` is generally synonymous with a 64-bit integer.
Richard Szalay
+2  A: 

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 = 22048 (this isn't quite exact, but gives you an idea of the magnitude), which is way more than the magnitude of a 64-bit signed double, which is 263-1.

Matti Virkkunen
A: 

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.

Pavel Shved