c# – 检查枚举标志的最佳做法[已关闭]

前端之家收集整理的这篇文章主要介绍了c# – 检查枚举标志的最佳做法[已关闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到这两个模式用于检查枚举标志:
[Flags]
public enum PurchaseType
{
    None = 0,SalePrice = 2,RegularPrice = 4,Clearance = 8,CreditCard = 16
}

public void Test()
{
    PurchaseType type = PurchaseType.Clearance;
    type |= PurchaseType.CreditCard;

    // Practice 1
    if ((type & PurchaseType.Clearance) == PurchaseType.Clearance)
    {
        // Clearance item handling
    }

    // Practice 2
    if ((type & PurchaseType.CreditCard) != 0)
    {
        // Credit card item handling   
    }
}

在检查枚举标志的两种方式中,哪一种更好的是性能,可读性,代码健康以及我应该做的其他任何考虑?

谢谢,
穆罕默德

解决方法

.Net 4引入了一种确定在当前实例中是否设置了一个或多个位字段的 HasFlag方法,这是迄今为止最佳实践:
type.HasFlag(PurchaseType.CreditCard);  // true
原文链接:https://www.f2er.com/csharp/94488.html

猜你在找的C#相关文章