获取函数名称作为符号(而不是字符串) - C 预处理器
C 中有没有办法获取可以使用标记粘贴的函数名称 (我知道 __FUNCTION__
和 __func__
,但它们在预处理时不会扩展为名称, 我不希望名称作为字符串)。
我希望能够做类似的事情: prefix_ ## __func_name__
,这样,在名为 func1()
的函数中,我可以访问 符号 prefix_func1
(也许我仍然可以使用 string,然后使用 dlsym
,但想知道是否有 GCC 中更简单的替代方案,不用担心可移植性)。
Is there a way in C to get the function name on which I can use token-pasting
(I know __FUNCTION__
and __func__
, but they don't expand to name at pre-processing,
and I do not want the name as a string).
I want to be able to do something like:prefix_ ## __func_name__
, so that, in a function by name func1()
, I can access the
symbol prefix_func1
(maybe I can still use string, and then use dlsym
, but want to know if there are
simpler alternatives in GCC, not worrying about portability).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将函数标识符设为宏,如下所示
,然后使用
FUNC1
进行标记粘贴。You could make the function identifier a macro, as in
and then use
FUNC1
for token pasting.