In source code I found this line:
if ((modifiers & ~KeyEvent.SHIFT_MASK) != 0) ....
Does somebody know what the ~ means?
Thanks
|
In source code I found this line:
Does somebody know what the Thanks |
||||
|
|
|
The Tilde (~) performs a bitwise complement of a numerical value in Java. See: http://www.java2s.com/Code/Java/Language-Basics/Bitwisecomplementinvertsonesandzerosinanumber.htm |
|||
|
|
|
It is the Unary ~ Bitwise complement operator (quoting) :
See also this page on Bitwise operators on wikipedia, which states :
|
|||
|
|
|
As said before ~ is the unary bitwise NOT operator.
|
||||
|
|
|
From the official docs http://java.sun.com/docs/books/tutorial/java/nutsandbolts/op3.html:
|
|||
|
|