“...”的含义和“##”在宏定义中

发布于 2024-12-19 22:55:28 字数 228 浏览 0 评论 0原文

#define MyLog(msg...) MyLogWith(__func__,##msg);

MyLog(@"I do not know...");

...## 在此定义中意味着什么?它们与 msg 组合是否有特殊含义:msg..##msg

#define MyLog(msg...) MyLogWith(__func__,##msg);

MyLog(@"I do not know...");

What do ... and ## mean in this definition? Is there a special meaning to them being combined with msg: msg.. or ##msg?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愁以何悠 2024-12-26 22:55:28

msg... 表示接受任意数量的参数。
,##msg表示粘贴参数,如果参数个数为0则删除前面的,
msg 没有特殊含义,它只是参数的名称,例如

#define MyLog(args...) MyLogWith(__func__,##args);

会做同样的事情

msg... means to take any amount of arguments.
,##msg means paste the arguments, and erase the preceding , if the argument count is 0
msg has no special meaning, its just the name for the arguments, e.g.

#define MyLog(args...) MyLogWith(__func__,##args);

will do the same

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