vote up 2 vote down star

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?

flag

7 Answers

vote up 13 vote down check

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|flag
This is a bitwise XOR, and the OP is asking for a LOGICAL XOR. – Eddie Apr 7 at 17:04
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 at 17:06
@Eddie: Try "boolean a = true, b = false; System.out.println(a ^ b);" – mmyers Apr 7 at 17:08
@mmyers: Yes, I know it works and can be used that way, and maybe that's why there is not an explicit logical XOR. I've used ^ myself in this fashion. – Eddie Apr 7 at 17:16
@Eddie: Um, what did you just say? There is but there isn't? – mmyers Apr 7 at 17:19
show 4 more comments
vote up 5 vote down

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|flag
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 at 20:57
vote up 2 vote down

Java does not have the ability to define new operators.

link|flag
vote up 9 vote down

Isn't it x != y ?

link|flag
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 at 17:15
For booleans this works. – Eddie Apr 7 at 17:17
Maurice: Arrgh you just blew my mind! How did I never notice this? – Iraimbilanja Apr 7 at 17:35
this only works with 2 booleans, not a list of booleans – Milhous Apr 7 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 at 18:42
show 1 more comment
vote up 1 vote down

The only operator overloading in Java is + on Strings.

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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