gpt4 book ai didi

c# - 在 Windows 窗体中检查 DrawItemState 等效性的条件表达式是什么意思?

转载 作者:行者123 更新时间:2023-11-30 22:56:41 24 4
gpt4 key购买 nike

我正在阅读 DrawItemState documentation我遇到了以下代码片段:

if ((e.State & DrawItemState.Selected) == DrawItemState.Selected )
brush = SystemBrushes.HighlightText;

文档中给出了如下解释

Since state can be a combination (bit-flag) of enum values, you can't use "==" to compare them

但是我仍然不明白这个条件表达式与下面显示的片段有何不同:

if (e.State == DrawItemState.Selected )
brush = SystemBrushes.HighlightText;

此外,我不明白按位 AND & 运算符有何不同以及为什么它甚至包含在条件表达式中。

最佳答案

由于枚举的基础值,您可以设置多个值(bitwise combination):

var state = DrawItemState.Disabled | DrawItemState.Grayed;

这意味着它们都将返回 false:

Console.WriteLine(state == DrawItemState.Disabled);  // false
Console.WriteLine(state == DrawItemState.Grayed); // false

测试值的一种方法是使用按位“与”运算符:

Console.WriteLine((state & DrawItemState.Grayed) == DrawItemState.Grayed);  // true

基本上,在我的示例中,state 设置了两个位 - 用于“Grayed”和“Disabled”。通过使用值为“Grayed”的按位“与”运算符,结果也是“Grayed”的值。

0 0 0 0 0 0 0 0 1 1 0    // binary value of disabled and grayed

0 0 0 0 0 0 0 0 0 1 0 // binary value of grayed

0 0 0 0 0 0 0 0 0 1 0 // result is same value as grayed

您也可以测试多个标志:

Console.WriteLine((state & (DrawItemState.Grayed | DrawItemState.Disabled))
== (DrawItemState.Grayed | DrawItemState.Disabled)); // true

0 0 0 0 0 0 0 0 1 1 0 // binary value of disabled and grayed

0 0 0 0 0 0 0 0 1 1 0 // binary value of disabled and grayed

0 0 0 0 0 0 0 0 1 1 0 // result is same value as disabled and grayed

就个人而言,我认为使用 HasFlag 测试标志值更容易:

Console.WriteLine(state.HasFlag(DrawItemState.Grayed));  // true

请注意,如果只有一个值,则 == 会起作用,但对于支持按位组合的“标志”枚举,这永远无法保证。

var state = DrawItemState.Grayed;

Console.WriteLine(state == DrawItemState.Grayed); // true

关于c# - 在 Windows 窗体中检查 DrawItemState 等效性的条件表达式是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54248109/

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