Objective-C宏来检测变量是否是原始的

时间:2012-12-27 15:00:06

标签: objective-c objective-c-runtime

我正在寻找一个宏来检测变量是Objective-C中的对象还是基元。

在这种情况下,我知道参数必须是变量,永远不会是表达式。

这是我提出的最好的事情:

#define IS_OBJECT(x)    ( @encode(__typeof__(x))[0] == '@' )
#define IS_PRIMITIVE(x) ( !IS_OBJECT(x) )

用法:

NSString *testString = @"test";
NSString *nilString = nil;
NSInteger testInteger = 1;

STAssertTrue(IS_OBJECT(testString), @"IS_OBJECT(testString) must be YES");
STAssertTrue(IS_OBJECT(nilString), @"IS_OBJECT(nilString) must be YES");
STAssertFalse(IS_OBJECT(testInteger), @"IS_OBJECT(testInteger) must be NO");

必须有更好的方法。


更新

考虑到@ChrisDevereux评论,我更新了IS_OBJECT宏。

#define IS_OBJECT(x) ( strchr("@#", @encode(__typeof__(x))[0]) != NULL )

现在通过:

NSString *testString = @"test";
NSString *nilString = nil;
NSInteger testInteger = 1;
Class classTest = [NSString class];

STAssertTrue(IS_OBJECT(testString), @"IS_OBJECT(testString) must be YES");
STAssertTrue(IS_OBJECT(nilString), @"IS_OBJECT(nilString) must be YES");
STAssertFalse(IS_OBJECT(testInteger), @"IS_OBJECT(testInteger) must be NO");
STAssertTrue(IS_OBJECT(classTest), @"IS_OBJECT(classTest) must be YES");

我仍然不喜欢这个答案,希望有一些更光滑的东西。运行时库中有什么可以做到的吗?

1 个答案:

答案 0 :(得分:7)

这是使用C11的generic selection mechanism的另一种方式。 _Generic是标准(现代)C并且在clang中支持了一段时间。

#define IS_OBJECT(T) _Generic( (T), id: YES, default: NO)

感觉运行时间对我来说有点少,所以我更喜欢@encode方式。但说实话,我只是用它来做这个答案,因为我喜欢_Generic赋予宏的力量,并认为更多的人应该开始使用它。如果您不了解它,您应该阅读上面链接的Robert Gamble的文章。