Bitwise OR Operator (|)

Performs a bitwise OR on two expressions.

语法

result = expression1 | expression2

参数

result

Any variable.

expression1

Any expression.

expression2

Any expression.

备注

The | operator looks at the binary representation of the values of two expressions and does a bitwise OR operation on them. The result of this operation behaves as follows:

0101  (expression1) 
1100  (expression2) 
---- 
1101  (result)

Any time either of the expressions has a 1 in a digit, the result will have a 1 in that digit. Otherwise, the result will have a 0 in that digit.

必备条件

在以下文档模式中受支持:怪异模式、Internet Explorer 6标准模式、Internet Explorer 7标准模式、Internet Explorer 8标准模式、Internet Explorer 9标准模式、Internet Explorer 10标准模式、Internet Explorer 11标准模式。Also supported in Store apps (Windows 8 and Windows Phone 8.1). See Version Information.

如果你喜欢这篇文章,敬请给站长打赏↑

除特别注明外,本站所有文章均为本站站长原译,转载请注明出处。