The size and range of the integer value types in C++ are platform specific. Values found on most 32-bit systems can be found here. How do you determine what the actual size and range are for your specific system?
|
|
C Stylelimits.h contains the min and max values for ints as well as other data types which should be exactly what you need:
For a complete list of constants and their common values check out: Wikipedia - limits.h C++ StyleThere is a template based C++ method as other commenters have mentioned using:
which looks like:
and it can even do craftier things like determine the number of digits possible or whether the data type is signed or not:
|
||||||||||||||||
|
|
|
Why not just be sure and use boost's numeric types? ie:
etc |
||||||
|
|
|
Take a look at |
||||
|
|
|
Use the
|
|||
|
|
|
|
You can use the types defined in stdint.h (or cstdint, if you are using C++), which are part of the C99 standard. It defines types with such names as *int32_t*, *uint8_t*, *int64_t*, an so on, which are guaranteed to be portable and platform independent. For more information: stdint.h |
||||
|
|
|
|
||||||||||||||
|
|
|
sizeof(integer) |
||
|
|
|
|
You can get the range of any data type by applying the following formulla: [-2 power (N-1)] to { [+2 power (N-1)] - 1 } Where "N" is the width of data type, for example in JAVA the width of int is 32,hence N = 32. Try this out you will get it. From: Prathap Kumar SV prathapkumarsv@yahoo.co.in |
||
|
|
