Among the bit operators in Java, there is an operator called exclusive or. The symbol is (^) or If 1
int a=1; int b=1; System.out.println(a^b);
is different, 0
int a=12; int b=0; System.out.println(a^b);
will be output here. 12
Summary: The same two numbers will output 0, which is false, and the other number is 0, then Output itself, and the following will demonstrate two different numbers for you
Related video tutorial recommendations:
java online tutorialOperation rulesThe operation rule is: in the same bit of two binary operands
For example: a=7; b=4;
a=0111; b=0100; (because int occupies 32 bits, the first digits are all 0, so only the last 4 digits are displayed)
a^b=?
Get a^b =3
The following will explain in detail how to exchange the values in the two attributes without using a third party
What we want to achieve is a=4; b=7;
The formula is a=a^b;
b=a^b;a=a^b;
First step analysis:
The value after the first step is: a=3; b=7;
The second step: b=a^b;
Value after the second step: a=3; b=4;
The third step: a=a^b;
The value after the three steps: a=7; b=4;
The XOR operation has three characteristics. One is that 0 is XORed with a number or itself, and 0 is XORed with itself. , the XOR operation also satisfies the exchange rate.
Use the characteristics of a^a=0 to implement this function. Find the odd number of occurrences in an array, which can also be understood as the one occurrence;
The code is directly entered here;
private static void ddd() { int a[] = { 22, 38, 38,5, 22, 4, 4, 11, 11 }; int t = 0; for (int i = 0; i < a.length; i++) { t ^= a[i]; } System.out.println(t); }
This will directly output 5
The following is some basic knowledge of XOR, if you are interested, you can study it;
1. a ^ b = b ^ a
2. a ^ b ^ c = a ^ (b ^ c) = (a ^ b) ^ c;
3. d = a ^ b ^ c can be deduced that a = d ^ b ^ c.
4. a ^ b ^ a = b.
More related articles and tutorials are recommended:
java introductory learningThe above is the detailed content of In-depth understanding of XOR operator in java. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
