获取函数名称作为符号(而不是字符串) - C 预处理器

发布于 2024-12-06 04:47:33 字数 346 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔一刀 2024-12-13 04:47:33

您可以将函数标识符设为宏,如下所示

#define FUNC1 func1

void FUNC1(void)
{
   ...
}

,然后使用 FUNC1 进行标记粘贴。

You could make the function identifier a macro, as in

#define FUNC1 func1

void FUNC1(void)
{
   ...
}

and then use FUNC1 for token pasting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文