如果您DBBool
在 C# 中查找实现,则返回时几乎没有重载运算符(逻辑运算符|
、、、&
)!
。我相信这是没有必要的,而且有点浪费内存。DBBool 是一个结构,当它被传递给一个方法时会生成一个副本,所以没有理由这样做。
// Logical negation operator. Returns True if the operand is False, Null
// if the operand is Null, or False if the operand is True.
public static DBBool operator !(DBBool x)
{
return new DBBool(-x.value);
}
// Logical AND operator. Returns False if either operand is False,
// Null if either operand is Null, otherwise True.
public static DBBool operator &(DBBool x, DBBool y)
{
return new DBBool(x.value < y.value ? x.value : y.value);
}
// Logical OR operator. Returns True if either operand is True,
// Null if either operand is Null, otherwise False.
public static DBBool operator |(DBBool x, DBBool y)
{
return new DBBool(x.value > y.value ? x.value : y.value);
}
不加新应该就是这样。
public static DBBool operator !(DBBool x)
{
if (x.value > 0) return False;
if (x.value < 0) return True;
return Null;
}
public static DBBool operator &(DBBool x, DBBool y)
{
return x.value < y.value ? x : y;
}
public static DBBool operator |(DBBool x, DBBool y)
{
return x.value > y.value ? x : y;
}