C++获取函数/方法的损坏名称
您好,我需要从 C++ 应用程序本身中确定函数的损坏名称。 g++ 中是否有与 __FUNCDNAME__ 宏等效的东西?
Hi I need to determine the mangled name of a function from within an c++ app itself.
Is there any equivalent to the __FUNCDNAME__
macro in g++ ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取分解后的名称,请使用 __PRETTY_FUNCTION__。
更好的是使用:
这给出了分解后的名称。我查看了 cxxabi.h 但似乎没有 mangle 函数。你真的想要这个被破坏的名字吗?
To get the demangled name use __PRETTY_FUNCTION__.
Better is to use:
This gives the demangled name. I looked at cxxabi.h but there does not seem to be a mangle function. Do you really want the mangled name?