On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have %zd, and on Win32 I can use %Id. Is there an elegant way to handle this?
|
|
|
|
|
|
|
The
|
||||||||||
|
|
|
I don't know of any satisfying solution, but you might consider a specialized function to format size_t items to a string, and print the string. (Alternatively, if you can get away with it, boost::format handles this kind of thing with ease.) |
||
|
|
The only thing I can think of, is the typical:
and then taking advantage of constant folding:
|
||
|
|
Dan Saks wrote an article in Embedded Systems Design which covered this matter. According to Dan, %zu is the standard way, but few compilers supported this. As an alternative, he recommended using %lu together with an explicit cast of the argument to unsigned long:
|
||||||
|
|
|
Can't you just test "sizeof(size_t)" to pick your format string? |
||
|
|
Use |
||
