I have some questions about the XOR operator ^ in Java.
I always thought that Java does not have a logical XOR operator because several people told me ^ is bitwise. Today I found some (unconfirmed) posts (without sources) saying ^ is overloaded in Java, working as a logical XOR for booleans and as a bitwise XOR e.g. for integers.
Which statement is true? Can anyone provide some reliable sources?
If ^ is overloaded, which types does it accept?
The Java Language Specification defines
and
There is no concept of overloading operators in Java.