^ operator in java - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:57:58Z http://stackoverflow.com/feeds/question/460542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/460542/-operator-in-java 10 ^ operator in java Warrior 2009-01-20T09:09:40Z 2009-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#460546 15 Answer by Cody Brocious for ^ operator in java Cody Brocious 2009-01-20T09:13:03Z 2009-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#460547 5 Answer by empi for ^ operator in java empi 2009-01-20T09:13:06Z 2009-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#460551 7 Answer by VonC for ^ operator in java VonC 2009-01-20T09:15:51Z 2009-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#460552 4 Answer by Zach Scrivena for ^ operator in java Zach Scrivena 2009-01-20T09:16:03Z 2009-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#460569 5 Answer by BlackPanther for ^ operator in java BlackPanther 2009-01-20T09:25:30Z 2009-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>