Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: Java オペレーター:|= bitwise OR and assign例
|= bitwise OR and assign
boolean bAlive; bAlive |= this.properties.containsKey(name);
上記では、コードは'|'. '|'を使用する理由
'|'
'|
前もって感謝します。
ブール値は、右側の値と OR されています。
this.properties.containsKey(name)がの場合TRUE、bAliveは に設定されTRUEます。
this.properties.containsKey(name)
TRUE
bAlive
そうでなければ、bAlive同じままです。