^ operator in java - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:57:58Zhttp://stackoverflow.com/feeds/question/460542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/460542/-operator-in-java10^ operator in javaWarrior2009-01-20T09:09:40Z2009-01-20T18:04:15Z
<p>Can anyone explain the use of ^ operator in java with some examples?Thanks</p>
http://stackoverflow.com/questions/460542/operator-in-java/460546#46054615Answer by Cody Brocious for ^ operator in javaCody Brocious2009-01-20T09:13:03Z2009-01-20T09:13:03Z<p>This is the same as ^ in most languages, just an XOR.</p>
<pre><code>0 ^ 0 == 0
1 ^ 0 == 1
0 ^ 1 == 1
1 ^ 1 == 0
</code></pre>
http://stackoverflow.com/questions/460542/operator-in-java/460547#4605475Answer by empi for ^ operator in javaempi2009-01-20T09:13:06Z2009-01-20T09:13:06Z<p>It's bitwise XOR.</p>
<p><a href="http://en.wikipedia.org/wiki/Exclusive_or" rel="nofollow">http://en.wikipedia.org/wiki/Exclusive_or</a></p>
http://stackoverflow.com/questions/460542/operator-in-java/460551#4605517Answer by VonC for ^ operator in javaVonC2009-01-20T09:15:51Z2009-01-20T18:04:15Z<p>The caret (^) operator is a <a href="http://lab.privacy.cs.cmu.edu/courses/java1/lectures/lecture11/sld035.htm" rel="nofollow">bitwise exclusive-or operator</a> (it should not be confused with Math.pow: it is not an exponential operator)</p>
<p><img src="http://lab.privacy.cs.cmu.edu/courses/java1/lectures/lecture11/img035.gif" alt="alt text" /></p>
<p><hr /></p>
<p>If the above picture should become unavailable, here is a text version:</p>
<pre><code> A B A^B
true 1 true 1 false 0
true 1 false 0 true 1
false 0 true 1 true 1
false 0 false 0 false 0
</code></pre>
<p>Examples, with num1=3, and num2=6, perform an exclusive-OR on each bit position:<br />
num1^num2 is 5:</p>
<pre><code> num1: 0 0 1 1
num2: 0 1 1 0
------------------
num1^num2: 0 1 0 1
num1 num2 num1^num2
---- ---- ---------
0011 0110 0101
</code></pre>
http://stackoverflow.com/questions/460542/operator-in-java/460552#4605524Answer by Zach Scrivena for ^ operator in javaZach Scrivena2009-01-20T09:16:03Z2009-01-20T09:16:03Z<p>That's the <strong>bitwise exclusive OR operation</strong>.
Check out the <a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/op3.html" rel="nofollow">Bitwise and Bit Shift Operators section</a> of the <a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">Java tutorials</a> for more information.</p>
http://stackoverflow.com/questions/460542/operator-in-java/460569#4605695Answer by BlackPanther for ^ operator in javaBlackPanther2009-01-20T09:25:30Z2009-01-20T09:25:30Z<p>In java ^ operator used for bitwise XOR operation.</p>
<p>Follow this link to see the operator precedence also.</p>
<p><a href="http://www.uni-bonn.de/~manfear/javaoperators.php" rel="nofollow">http://www.uni-bonn.de/~manfear/javaoperators.php</a></p>