Please let me know the difference between ~ and ! operator in java.
|
|
|||
|
|
|
~ is the negation operator. It negates bits from true to false or false to true. Used only with integral data types (int, short, byte, char, long). ! flips the value of a boolean. This will work on anything that will result in a logical value. So if you have foo < 5 you can do !(foo < 5) and the result will be the opposite. |
||||||||||||||||
|
|
|
|
||
|
|
