Is there a native c++ variable type that's "bigger" than a double?
float is 7
double is 15 (of course depending on the compiler)
Is there anything bigger that's native, or even non-native?
|
|
|
|||
|
|
|
C++ has Your mileage may vary, especially if you're not on x86. |
||
|
|
|
|
A long double typically only uses 10 bytes, but due to alignment may actually take up 12 or 16 (depending on the compiler and options) bytes in a structure. The 10 byte long double provides a 64-bit mantissa; this is very convenient for when you want to store 64 bit integers in floating point without loss of precision. |
||
|
|
|
C++ has long double, but it's still quite limited. For good time try GNU's gmp library. You can set up numbers as big as you like, and it's quite fun and hackishly when you use gmp_add instead of a normal +. I'm sure there's a C++ wrapper somewhere. |
||
|
|
|
|
You can use GNU MP. Its floating-point functions have unlimited mantissa and 32-bit or 64-bit (depending on the native word size) exponent. It also comes with a C++ wrapper. |
||
|
|
|
|
There are also some various bigfloat/bigint libraries around for C++ that allow arbitrary precision math. There's this library on Microsoft Codeplex, but Googling will find you plenty of others. |
||
|
|
|
|
a treble! (no, not really) |
||||||||
|
|
|
long double, but it generally is still 15 places of precision too. |
||
|
|
