Possible Duplicate:
Java Operators :|= bitwise OR and assignexample
boolean bAlive;
bAlive |= this.properties.containsKey(name);
In the above , the code uses '|'.
Why using '|' ?
Thanks in advance.
Possible Duplicate:
Java Operators :|= bitwise OR and assignexample
boolean bAlive;
bAlive |= this.properties.containsKey(name);
In the above , the code uses '|'.
Why using '|' ?
Thanks in advance.