这个宏有什么问题吗?

发布于 2024-12-05 05:48:57 字数 270 浏览 0 评论 0原文

#define mySynthesize(op) @synthesize op = _op;

不是打字,而是

@synthesize someVar=_someVar;
@synthesize otherVar=_otherVar;

因此,我可以做的

mySynthesize (someVar);

“好吧”,但它不起作用。我做错了什么?

#define mySynthesize(op) @synthesize op = _op;

So rather than typing

@synthesize someVar=_someVar;
@synthesize otherVar=_otherVar;

I can just do

mySynthesize (someVar);

Well, it doesn't work though. What did I do wrong?

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

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

发布评论

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

评论(1

夏九 2024-12-12 05:48:57

当您在 op 前面添加下划线时,预处理器会将其视为不同的标记,因此不会被替换。您需要使用 ## 将下划线连接到前面,以便首先进行替换。

#define mySynthesize(op) @synthesize op = _ ## op

When you prefix the op with an underscore, the preprocessor treats it as a different token, so it doesn't get replaced. You need to use ## to concatenate the underscore to the front so that the replacement occurs first.

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