Enum.HasFlag无法正常工作

Den*_*sch 1 c# enums flags

我有一个带有Flags的枚举:

[Flags]
public enum ItemType
{
    Shop,
    Farm,
    Weapon,
    Process,
    Sale
}
Run Code Online (Sandbox Code Playgroud)

然后,我在列表中有几个对象有一些标志设置和一些标志未设置。看起来像这样:

public static List<ItemInfo> AllItems = new List<ItemInfo>
{
        new ItemInfo{ID = 1, ItemType = ItemType.Shop, Name = "Wasserflasche", usable = true, Thirst = 50, Hunger = 0, Weight = 0.50m, SalesPrice = 2.50m, PurchasePrice = 5,  ItemUseAnimation = new Animation("Trinken", "amb@world_human_drinking@coffee@female@idle_a", "idle_a", (AnimationFlags.OnlyAnimateUpperBody | AnimationFlags.AllowPlayerControl)) },
        new ItemInfo{ID = 2, ItemType = ItemType.Sale, Name = "Sandwich", usable = true, Thirst = 0, Hunger = 50, Weight = 0.5m, PurchasePrice = 10, SalesPrice = 5, ItemUseAnimation = new Animation("Essen", "mp_player_inteat@pnq", "intro", 0) },
        new ItemInfo{ID = 3, ItemType = (ItemType.Shop|ItemType.Process), Name = "Apfel", FarmType = FarmTypes.Apfel, usable = true, Thirst = 25, Hunger = 25, Weight = 0.5m, PurchasePrice = 5, SalesPrice = 2, ItemFarmAnimation = new Animation("Apfel", "amb@prop_human_movie_bulb@base","base", AnimationFlags.Loop)},
        new ItemInfo{ID = 4, ItemType = ItemType.Process, Name = "Brötchen", usable = true, Thirst = -10, Hunger = 40, Weight = 0.5m, PurchasePrice = 7.50m, SalesPrice = 4}
}
Run Code Online (Sandbox Code Playgroud)

然后,我循环浏览列表,询问是否ItemType.Shop设置了标志,如下所示:

List<ItemInfo> allShopItems = ItemInfo.AllItems.ToList();
foreach(ItemInfo i in allShopItems)
{
    if (i.ItemType.HasFlag(ItemType.Shop))
    {
        API.consoleOutput(i.Name);
    }
}
Run Code Online (Sandbox Code Playgroud)

这是我的环路的输出-它显示在列表中的所有项目和.HasFlag方法总是在这种情况下返回true。

Wasserflasche
Sandwich
Apfel
Brötchen
Run Code Online (Sandbox Code Playgroud)

Cod*_*per 5

尝试为您的枚举赋值

[Flags]
public enum ItemType 
{
    Shop = 1,
    Farm = 2,
    Weapon = 4,
    Process = 8,
    Sale = 16
}
Run Code Online (Sandbox Code Playgroud)

以下是FlagsAttribute和Enum的一些 准则(摘自Microsoft Docs)

  • 仅当对数字值执行按位运算(AND,OR,EXCLUSIVE OR)时,才将FlagsAttribute自定义属性用于枚举。
  • 以2的幂定义枚举常数,即1、2、4、8等。这意味着组合枚举常量中的各个标志不会重叠。

  • 如果有一个Flags枚举,并且没有`None`以外的其他选项,则等于'0'几乎总是一个坏计划。 (3认同)
  • 您不应将“ 0”用作标志枚举。另外,您有重复的`2`值。 (2认同)