317

我尝试使用 Google Search 和 Stack Overflow 进行搜索,但没有显示任何结果。我在开源库代码中看到了这一点:

Notification notification = new Notification(icon, tickerText, when);
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;

"|=" ( pipe equal operator) 是什么意思?

4

6 回答 6

399

|=读法与+=.

notification.defaults |= Notification.DEFAULT_SOUND;

是相同的

notification.defaults = notification.defaults | Notification.DEFAULT_SOUND;

哪里|是按位或运算符。

此处引用了所有运算符。

使用按位运算符是因为通常这些常量使 int 能够携带标志。

如果您查看这些常量,您会发现它们是 2 的幂:

public static final int DEFAULT_SOUND = 1;
public static final int DEFAULT_VIBRATE = 2; // is the same than 1<<1 or 10 in binary
public static final int DEFAULT_LIGHTS = 4; // is the same than 1<<2 or 100 in binary

所以你可以使用按位或来添加标志

int myFlags = DEFAULT_SOUND | DEFAULT_VIBRATE; // same as 001 | 010, producing 011

所以

myFlags |= DEFAULT_LIGHTS;

只是意味着我们添加了一个标志。

并且对称地,我们测试一个标志设置使用&

boolean hasVibrate = (DEFAULT_VIBRATE & myFlags) != 0;
于 2013-01-12T16:44:13.760 回答
46

你的问题已经得到了足够的答案。但我的回答可能会帮助您更多地了解|=二元运算符。

我正在为按位运算符编写表格:
以下是有效的:

----------------------------------------------------------------------------------------
Operator   Description                                   Example
----------------------------------------------------------------------------------------
|=        bitwise inclusive OR and assignment operator   C |= 2 is same as C = C | 2
^=        bitwise exclusive OR and assignment operator   C ^= 2 is same as C = C ^ 2
&=        Bitwise AND assignment operator                C &= 2 is same as C = C & 2
<<=       Left shift AND assignment operator             C <<= 2 is same as C = C << 2
>>=       Right shift AND assignment operator            C >>= 2 is same as C = C >> 2  
----------------------------------------------------------------------------------------

请注意,所有运算符都是二元运算符。

请注意:( 对于以下几点,我想添加我的答案)

  • >>>是 Java 中的按位运算符,称为无符号移位
    >>>=不是Java中的运算符。 >>>= 运算符

  • ~是按位补码,0 to 1 and 1 to 0(一元运算符)但~=不是运算符。

  • 此外, !称为逻辑非运算符,但!=检查两个操作数的值是否相等,如果值不相等则条件为真。例如(A != B) is true。其中 asA=!B表示 if Bis truethen Abecome false(并且 if Bis falsethen Abecome true)。

旁注:|不称为管道,而是称为 OR,管道是外壳术语,将一个进程转移到下一个进程。

于 2013-01-12T18:33:17.913 回答
26

我一直在寻找有关|=Groovy 功能​​的答案,尽管上面的答案是正确的,但它们并没有帮助我理解我正在查看的特定代码。

特别是,当应用于布尔变量时,“|=”将在它第一次遇到右侧的真值表达式时将其设置为 TRUE,并将在所有 |= 后续调用中保持其 TRUE 值。像一个闩锁。

这是一个简化的例子:

groovy> boolean result  
groovy> //------------ 
groovy> println result           //<-- False by default
groovy> println result |= false 
groovy> println result |= true   //<-- set to True and latched on to it
groovy> println result |= false 

输出:

false
false
true
true

编辑:为什么这有用?

考虑一种情况,您想知道各种对象是否发生了任何变化,如果发生了变化,请通知其中一些变化。因此,您将设置一个hasChanges布尔值并将其设置为 |= diff (a,b)然后|= dif(b,c)等。这是一个简短的示例:

groovy> boolean hasChanges, a, b, c, d 
groovy> diff = {x,y -> x!=y}  
groovy> hasChanges |= diff(a,b) 
groovy> hasChanges |= diff(b,c) 
groovy> hasChanges |= diff(true,false) 
groovy> hasChanges |= diff(c,d) 
groovy> hasChanges 

Result: true
于 2015-12-14T19:15:05.300 回答
15

这是一个缩写:

notification.defaults = notification.defaults | Notification.DEFAULT_SOUND;

并且|是位或。

于 2013-01-12T16:44:34.750 回答
10

|按位或运算符,它的应用类似于+=.

于 2013-01-12T16:45:44.000 回答
4

注意:||= 不存在。(逻辑或)您可以使用

y= y || expr; // expr is NOT evaluated if y==true

或者

y = expr ? true : y;  // expr is always evaluated.
于 2015-06-27T22:06:11.027 回答