Is it possible in standard C++ to print a variable type. I think this is being addressed in C++0x but not sure it already exists.
I would like something like this:
int a = 12;
cout << typeof(a) << endl;
That would print:
int
|
|
|
Try:
You might have to activate RTTI in your compiler options for this to work. Additionally, the output of this depends on the compiler. It might be a raw type name or a name mangling symbol or anything in between. |
||||
|
|
|
EDIT: Beaten, serves me right for looking it up =]. Don't forget to include I believe what you are referring to is runtime type identification. You can achieve the above by doing .
|
|||
|
|
|
Note that the names generated by the RTTI feature of C++ is not portable. For example, the class
will have the following names:
So you can't use this information for serialization. But still, the typeid(a).name() property can still be used for log/debug purposes |
|||
|
|
|
You can use templates.
In the example above, when the type is not matched it will print "unknown". |
|||
|
|
|
You could use a traits class for this. Something like:
The This might be more useful than the solutions involving |
|||
|
|
|
The other answers involving RTTI (typeid) are probably what you want, as long as:
The alternative, (similar to Greg Hewgill's answer), is to build a compile-time table of traits.
Be aware that if you wrap the declarations in a macro, you'll have trouble declaring names for template types taking more than one parameter (e.g. std::map), due to the comma. To access the name of the type of a variable, all you need is
|
|||||||
|
|
Very ugly but does the trick if you only want compile time info (e.g. for debugging):
Returns:
|
|||
|
|
|
As mentioned,
} |
|||
|
|
|
You may be looking for this: http://www.boostpro.com/vault/ look for the file identification-v0.1.zip |
|||
|
|