访问超类常量

发布于 2024-11-06 15:38:42 字数 318 浏览 1 评论 0原文

在我的通用应用程序的主 AppDelegate 类中,我定义了一个常量:

#define kNumerOfPages 2

在 AppDelegate_iPhone 类和 AppDelegate_iPad 类中,我可以像普通常量一样访问该常量。示例:

switch (i) {
    case ([super kNumerOfPages]):
    {
        NSLog(@"FinalPage");
        break;
    }
}

我可以将其作为常量访问吗?

In my universal app in main AppDelegate class I define a constant:

#define kNumerOfPages 2

In AppDelegate_iPhone class and AppDelegate_iPad class I would have access to this constant like normal constant. Example:

switch (i) {
    case ([super kNumerOfPages]):
    {
        NSLog(@"FinalPage");
        break;
    }
}

Can I get access to it as a constant?

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

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

发布评论

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

评论(1

烟柳画桥 2024-11-13 15:38:42

#define 是一个预处理器指令,它显示用哪些值替换哪些标记。您不能在运行时通过对象访问它。您需要做的就是将适当的头文件包含到您想要使用该常量的文件中。然后只需执行简单的操作

switch (i) {
    case (kNumberOfPages) {
        ...
    }
}

#define is a preprocessor directive which shows what tokens to replace with what values. You don't access it through objects at runtime. All you need to do is to include appropriate header file to the file you want to use that constant in. then just do the simple

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