现在的位置: 首页 > 综合 > 正文

C# – Operator &, | and ^ can also operate bool operands

2014年05月18日 ⁄ 综合 ⁄ 共 432字 ⁄ 字号 评论关闭

Yes, binary operators&,| and^
are also predefined for the 
bool type.


& computes the logical AND of its operands;
that is, the result is 
true if and only if both its operands are trueThe & operator
evaluates both operators regardless of the first one's value.

| computes
the logical OR of its operands; that is, the result is 
false if and only if both its operands are false.

^ computes
the logical exclusive-or of its operands; that is, the result is 
true if and only if exactly one of
its operands is 
true.

抱歉!评论已关闭.