3
I was doing some research and came across the operator in sequence |=
. Look at:
mBuilder.getNotification().flags |= Notification.FLAG_AUTO_CANCEL;
There is this operator in JAVA, but I do not know exactly if it follows the same syntax in other language and I was in doubt.
What the operator means |=
?