up vote 19 down vote favorite
2
share [g+] share [fb]

Observations:

Java has a logical AND operator.
Java has a logical OR operator.
Java has a logical NOT operator.

Problem:

Java has no logical XOR operator, according to sun. I would like to define one.

Method Definition:

As a method it is simply defined as follows:

public static boolean logicalXOR(boolean x, boolean y) {
    return ( ( x || y ) && ! ( x && y ) );
}


Method Call:

This method is called in the following way:

boolean myVal = logicalXOR(x, y);


Operator Usage:

I would much rather have an operator, used as follows:

boolean myVal = x ^^ y;


Question:

I can't find anything on how to go about defining a new operator in Java. Where should I start?

link|improve this question

feedback

7 Answers

up vote 50 down vote accepted

Java does have a logical XOR operator, it is ^ (as in a ^ b).

Apart from that, you can't define new operators in Java.

Edit: Here's an example:

public static void main(String[] args) {
	boolean[] all = { false, true };
	for (boolean a : all) {
		for (boolean b: all) {
			boolean c = a ^ b;
			System.out.println(a + " ^ " + b + " = " + c);
		}
	}
}

Output:

false ^ false = false
false ^ true = true
true ^ false = true
true ^ true = false
link|improve this answer
2  
This escaped my memory too when I wrote my post, but I think you CAN use ^ as a logical operator (as well as bitwise). – Neil Coffey Apr 7 '09 at 17:06
2  
@Eddie: Try "boolean a = true, b = false; System.out.println(a ^ b);" – Michael Myers Apr 7 '09 at 17:08
5  
^ is not only a bitwise operator. It is also a logical operator. The ^ operator is overloaded. It operates on integral types or boolean types. +1 for a great answer javashlook. Eddie, it doesn't get more explicit than JLS Section 15.22.2, "Boolean Logical Operators &, ^, and |". – erickson Apr 7 '09 at 17:25
5  
And of course, the answer is that && and || will skip evaluating the 2nd part of the expression and & and | will always evaluate both parts of the expression (from my read of JLS). A ^^ would always have to evaluate both parts, by definition, so behaves identically to ^. Probably why there's no ^^ – Eddie Apr 7 '09 at 17:45
5  
@Eddie: That and ^^ just looks too much like an emoticon. – Michael Myers Apr 7 '09 at 17:47
show 4 more comments
feedback

Isn't it x != y ?

link|improve this answer
If x and y are booleans, then the logic table for xor and != are identical: t,t => f ; t,f => t; f,t => t; f,f => f – Greg Case Apr 7 '09 at 17:15
1  
For booleans this works. – Eddie Apr 7 '09 at 17:17
2  
Maurice: Arrgh you just blew my mind! How did I never notice this? – Iraimbilanja Apr 7 '09 at 17:35
this only works with 2 booleans, not a list of booleans – Milhous Apr 7 '09 at 18:11
Milhous: if by a list you mean "a^b^c^d" (which doesn't even make sense) then != is fully equivalent. – Iraimbilanja Apr 7 '09 at 18:42
show 1 more comment
feedback

Java has a logical AND operator.
Java has a logical OR operator.

Wrong.

Java has

  • two logical AND operators: normal AND is & and short-circuit AND is &&, and
  • two logical OR operators: normal OR is | and short-circuit OR is ||.

XOR exists only as ^, because short-circuit evaluation is not possible.

link|improve this answer
feedback

That's because operator overloading is something they specifically left out of the language deliberately. They "cheated" a bit with string concatenation, but beyond that, such functionality doesn't exist.

(disclaimer: I haven't worked with the last 2 major releases of java, so if it's in now, I'll be very surprised)

link|improve this answer
1  
Bear in mind that you can't define new operators in C++ either. All you can do is give new meanings to the old ones. – David Thornley Apr 7 '09 at 20:57
feedback

Perhaps you misunderstood the difference between & and &&, | and || The purpose of the short cut operators && and || is that the value of the first operand can determine the result and so the second operand doesn't need to be evaluated.

This is especially useful if the second operand would results in an error. e.g.

if (set == null || set.isEmpty())
// or
if (list != null && list.size() > 0)

However with XOR, you always have to evaluate the second operand to get the result so the only meaningful operation is ^

link|improve this answer
feedback

The only operator overloading in Java is + on Strings (JLS 15.18.1 String Concatenation Operator +).

The community has been divided in 3 for years, 1/3 doesn't want it, 1/3 want it, and 1/3 doesn't care.

You can use unicode to create method names that are symbols... so if you have a symbol you want to use you could do myVal = x.$(y); where $ is the symbol and x is not a primitive... but that is going to be dodgy in some editors and is limiting since you cannot do it on a primitive.

link|improve this answer
I gave you +1: but you should provide a reference to + on String overloading. – harschware Jan 4 '10 at 16:53
done - thx for the suggestion. – TofuBeer Jan 4 '10 at 17:38
feedback

Java does not have the ability to define new operators.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.