测试枚举给出警告:指针和整数之间的比较

发布于 2024-08-18 10:00:20 字数 379 浏览 1 评论 0原文

我收到此警告:

警告:指针之间的比较 和整数

执行以下操作时

if (menuItem.menuType == LinkExternal)

: MenuType 是自定义枚举,定义如下:

enum menuItemType
{
    LinkInternal = 0,
    LinkExternal = 1,
    Image = 2,
    Movie = 3,
    MapQuery = 4
};

enum menuItemType *menuType;

我假设我只需要强制转换,但语法是什么?

I am getting this warning:

warning: comparison between pointer
and integer

when doing the following:

if (menuItem.menuType == LinkExternal)

MenuType is a custom enum defined as below:

enum menuItemType
{
    LinkInternal = 0,
    LinkExternal = 1,
    Image = 2,
    Movie = 3,
    MapQuery = 4
};

enum menuItemType *menuType;

I assume I just need a cast but what is the syntax?

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

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

发布评论

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

评论(1

看海 2024-08-25 10:00:20

由于您的 menuType 是指向枚举值的指针,您可以重写您的条件:

if (*(menuItem.menuType) == LinkExternal)

但是为什么需要通过指针存储这个值?你就不能:

enum menuItemType menuType;

As your menuType is a pointer to enum value you can rewrite your condition:

if (*(menuItem.menuType) == LinkExternal)

But why do you need to store this value by pointer? Can't you have just:

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