有没有办法让预处理器宏插入参数而无需在其两侧添加空格?

发布于 2024-11-17 10:25:46 字数 304 浏览 1 评论 0原文

长话短说,我正在尝试这样做:

#define MY_MACRO(x) id myObjectx;

创建 myObject1myObject2 等等。我有很多这样的东西,真实的情况比仅仅声明对象要复杂一点,就是这样,我需要它用这个数字重复一些不同的事情,复制粘贴变得很难看。

注意:我知道根据我提供给您的信息,您可能会建议我只使用数组,所以我将解释一下 - 我需要一堆单独的 KVO 属性,并且它们不能全部放在一个数组中一对多,因为更改通知的数量会失控。

To make a somewhat long story short, I'm trying to do this:

#define MY_MACRO(x) id myObjectx;

to create myObject1 and myObject2 and so on. I have a lot of these, and the real situation is a little more complicated than just declaring the object and that's it, I need it to repeat a few different things with that number, and copy-paste is getting ugly.

Note: I understand that with the information I've given you you'll be tempted to suggest I just use an array, so I'll explain - I need a bunch of separate KVO properties, and they can't all go in a to-many because the amount of change notifications would get out of hand.

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

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

发布评论

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

评论(1

于我来说 2024-11-24 10:25:46

正如 bmargulies 所说,您可以在宏中使用 ##

#define MY_MACRO(x) id myObject##x;

bmargulies,为什么不添加您的评论作为答案......?

As bmargulies said, you can use ## in the macro:

#define MY_MACRO(x) id myObject##x;

bmargulies, why don't you add your comment as an answer...?

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