Objective C 预处理器:获取当前类

发布于 2024-11-03 04:35:10 字数 636 浏览 1 评论 0 原文

有没有办法获取预处理器中当前作用域的类?

目前,我正在做的事情如下:

我有一个宏:

#define DATA_SOURCE_DEF_CONSTR(CLASS) + (CLASS *)dataSource { \
CLASS *source = [[[CLASS alloc] init] autorelease]; \
return source; \
}

然后我在很多类中使用该宏,例如:

DATA_SOURCE_DEF_CONSTR(SpecialDataSource)

我想要类似的东西:

#define DATA_SOURCE_DEF_CONSTR + (__CLASS__ *)dataSource { \
__CLASS__ *source = [[[__CLASS__ alloc] init] autorelease]; \
return source; \
}

并这样称呼它:

@implementation ...

DATA_SOURCE_DEF_CONSTR

...

@end

在 Objective-C 中可以使用预处理器?

Is there a way to get the class of the current scope in the preprocessor?

Currently, what I am doing is the following:

I have a macro:

#define DATA_SOURCE_DEF_CONSTR(CLASS) + (CLASS *)dataSource { \
CLASS *source = [[[CLASS alloc] init] autorelease]; \
return source; \
}

and then I am using that macro in a lot of classes like:

DATA_SOURCE_DEF_CONSTR(SpecialDataSource)

I would like to something like:

#define DATA_SOURCE_DEF_CONSTR + (__CLASS__ *)dataSource { \
__CLASS__ *source = [[[__CLASS__ alloc] init] autorelease]; \
return source; \
}

And call it like:

@implementation ...

DATA_SOURCE_DEF_CONSTR

...

@end

Is that possible in Objective-C with the preprocessor?

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

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

发布评论

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

评论(2

似最初 2024-11-10 04:35:10

我不明白你想要实现什么目标。为什么不直接向 NSObject 添加一个类别,例如:

@implementation NSObject (handyConstructor)

+ autoreleasedInstance { return [[[self class] alloc] init] autorelease]; }

@end

您是否特别希望由预处理器来完成此操作?

I don't get what you're trying to accomplish. Why not just add a category to NSObject, like:

@implementation NSObject (handyConstructor)

+ autoreleasedInstance { return [[[self class] alloc] init] autorelease]; }

@end

Is there some reason why you want this to be done by the preprocessor in particular?

灯下孤影 2024-11-10 04:35:10

有一个新的关键字 instancetype,也许可以帮助您;更多信息请此处。对于你的例子:

#define DATA_SOURCE_DEF_CONSTR + (instancetype)dataSource { \
return [[[[self class] alloc] init] autorelease]; \
}

There's a new keyword, instancetype, that perhaps could help you; more here. For your example:

#define DATA_SOURCE_DEF_CONSTR + (instancetype)dataSource { \
return [[[[self class] alloc] init] autorelease]; \
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文