How would you write (in C/C++) a macro which tests if an integer type (given as a parameter) is signed or unsigned?
#define is_this_type_signed (my_type) ...
|
2
|
|||||
|
|
|
If what you want is a simple macro, this should do the trick:
|
||||||
|
|
|
In C++, use
See http://msdn.microsoft.com/en-us/library/85084kd6(VS.80).aspx. |
||||||
|
|
|
Your requirement isn't exactly the best, but if you'd like to hack together a define, one option could be:
However, this isn't considered nice or portable by any means. |
||
|
|
|
|
I was actually just wondering the same thing earlier today. The following seems to work:
I tested with:
which prints:
|
||
|
|
|
|
In C++ you can do:
numeric_limits is defined in the <limits> header. |
||
|
|
|
|
If you want a macro then this should do the trick:
Basically, cast -1 to your type and see if it's still -1. In C++ you don't need a macro. Just
|
||
|
|
|
|
Althout
This code will print
|
||
|
|
|
|
For c++, there is boost::is_unsigned<T>. I'm curious why you need it though, there are few good reasons IMHO. |
||||||
|
|
|
You could do this better with a template function, less macro nasty business.
Forgive the formatting... I would try this out and see if it works... |
||
|
|
|
|
In C, you can't write a macro that works on as-yet unknown typedef's of fundamental integer types. In C++, you can as long as your type is a fundamental integer type or a typedef of a fundamental integer type. Here's what you'd do in C++:
|
||
|
|