3

可能重复:
Java 运算符:|= bitwise OR and assign示例

|= 在 Java 中是什么意思?

例如下面;


note.flags |= Notification.FLAG_AUTO_CANCEL

谢谢

4

1 回答 1

10

总是先到这里: http: //docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html

它是按位或赋值运算符。

它与以下内容相同:

note.flags = note.flags | Notification.FLAG_AUTO_CANCEL;
于 2012-04-25T01:14:25.617 回答