gpt4 book ai didi

c# - 为什么我不能在变量和枚举之间进行比较(C#)

转载 作者:太空宇宙 更新时间:2023-11-03 17:41:42 25 4
gpt4 key购买 nike

我的引用代码:

uint bk = 0;
enum ButtonKey : uint
{
None = 0,
Key1,
Key2
};

private void button_Click(object sender, EventArgs e)
{
bk = (uint)ButtonKey.Key1;
}

void foo()
{
if( bk == ButtonKey.Key1 )
{
// so something
}
}

我在 bk == ButtonKey.Key1 上收到错误消息比较。无论我如何尝试施放这两个,我都无法超越这一点。我敢肯定有一个简单的解释...决心整天躲避我!

我在这里想念什么?提前致谢...

最佳答案

您正在比较 uint特定类型的 enum时代。比较时转换枚举:

if( bk == (uint)ButtonKey.Key1 )
{
// so something
}

更好的解决方案是更改 bk 的类型。 :
ButtonKey bk;
enum ButtonKey
{
None = 0,
Key1,
Key2
};

private void button_Click(object sender, EventArgs e)
{
bk = ButtonKey.Key1;
}

void foo()
{
if( bk == ButtonKey.Key1 )
{
// so something
}
}

关于c# - 为什么我不能在变量和枚举之间进行比较(C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19277015/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com