C++ 中有 __CLASS__ 宏吗?
C++ 中是否有一个 __CLASS__
宏,它给出的类名类似于给出函数名的 __FUNCTION__
宏
Is there a __CLASS__
macro in C++ which gives the class name similar to __FUNCTION__
macro which gives the function name
推荐答案
最接近的方法是调用 typeid(your_class).name()
- 但这会产生编译器特定的错误名称.
The closest thing there's is to call typeid(your_class).name()
- but this produces compiler specific mangled name.
要在类中使用它,只需 typeid(*this).name()
To use it inside class just typeid(*this).name()
相关文章