|= 在 Java 中是什么意思?
例如下面;
note.flags |= Notification.FLAG_AUTO_CANCEL
谢谢
|= 在 Java 中是什么意思?
例如下面;
note.flags |= Notification.FLAG_AUTO_CANCEL
谢谢
总是先到这里: http: //docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html。
它是按位或赋值运算符。
它与以下内容相同:
note.flags = note.flags | Notification.FLAG_AUTO_CANCEL;