这个问题已经有了答案:
Shortcut “or-assignment” (|=) operator in Java
8答
有人能解释一下这是什么意思吗?就像这里:
noti.flags |= Notification.FLAG_AUTO_CANCEL;
最佳答案
这是一个简短的陈述:
noti.flags = noti.flags | Notification.FLAG_AUTO_CANCEL;
这个问题已经有了答案:
Shortcut “or-assignment” (|=) operator in Java
8答
有人能解释一下这是什么意思吗?就像这里:
noti.flags |= Notification.FLAG_AUTO_CANCEL;
最佳答案
这是一个简短的陈述:
noti.flags = noti.flags | Notification.FLAG_AUTO_CANCEL;