Please let me know the difference between ~ and ! operator in java.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
~ 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. |
|||||||||||||||||
|
|
|
|||
|
|