获取枚举项的总数

发布于 2024-08-05 20:36:52 字数 193 浏览 4 评论 0原文

是否可以在运行时获取枚举定义的项目总数?

虽然这与这个问题几乎是同一个问题,但问题与 C# 相关,据我所知,那里提供的方法在 Objective-C 中不起作用。

Is it possible to get the total number of items defined by an enum at runtime?

While it's pretty much the same question as this one, that question relates to C#, and as far as I can tell, the method provided there won't work in Objective-C.

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

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

发布评论

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

评论(2

囍笑 2024-08-12 20:36:52

enum 是一种普通的旧 C 类型,因此它不提供动态运行时信息。

一种替代方法是使用枚举的最后一个元素来指示计数:

typedef enum {
    Red,
    Green,
    Blue,
    numColors
} Color;

An enum is a plain-old-C type, therefore it provides no dynamic runtime information.

One alternative is to use the last element of an enum to indicate the count:

typedef enum {
    Red,
    Green,
    Blue,
    numColors
} Color;
如日中天 2024-08-12 20:36:52

使用预处理器,您可以实现这一点,而无需为枚举添加附加值的烦人“黑客”

#define __YourEnums \
YourEnum_one, \
YourEnum_two, \
YourEnum_three, \
YourEnum_four, \
YourEnum_five, \
YourEnum_six,

typedef enum : NSInteger {
__YourEnums
}YourEnum;

#define YourEnum_count ({ \
NSInteger __YourEnumsArray[] = {__YourEnums}; \
sizeof(__YourEnumsArray)/sizeof(__YourEnumsArray[0]); \
})

Using preprocessors you can achieve this without the annoying 'hack' of adding an additional value to your enum

#define __YourEnums \
YourEnum_one, \
YourEnum_two, \
YourEnum_three, \
YourEnum_four, \
YourEnum_five, \
YourEnum_six,

typedef enum : NSInteger {
__YourEnums
}YourEnum;

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