vote up 5 vote down star

Is there a __CLASS__ macro in C++ which gives the class name similar to __FUNCTION__ macro which gives the function name

flag

4 Answers

vote up 2 vote down check

The closest thing there's is to call typeid(your_class).name() - but this produces compiler specific mangled name.

To use it inside class just typeid(*this).name()

link|flag
Thanks.. this is good enough for logging – mortal Nov 3 at 11:47
You have to know your class first to invoke this ;-) – hacker Nov 3 at 11:48
this is for logging, so I do know the class where I am invoking this. Just trying to avoid explicitly defining a char array containing the class name – mortal Nov 3 at 11:51
1  
typeid(*this).name() can be used inside class functions – Aleksei Potov Nov 3 at 11:55
1  
That's better. As for knowing the class, defining char array sounds better than postponing it till runtime. – hacker Nov 3 at 12:21
vote up 2 vote down

Not yet. (I think __class__ is proposed somewhere). You can also try to extract class part from __PRETTY_FUNCTION__.

link|flag
vote up 0 vote down

If you're talking MS C++ (You should state, esp as __FUNCTION__ is a non-standard extension), there are __FUNCDNAME__ and __FUNCSIG__ symbols which you could parse

link|flag
vote up 0 vote down

If your compiler happens to be g++ and you are asking for __CLASS__ because you want a way to get the current method name including the class, __PRETTY_FUNCTION__ should help (according to info gcc, section 5.43 Function Names as Strings).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.