简体   繁体   中英

What is >>> operation in C++

In this blog post the author has suggested the following as the bug fix:

 int mid = (low + high) >>> 1;

Does anyone know what is this >>> operator? Certainly its not there on the following operator reference list:

What is it and how does that solve the overflow problem?

>>> is not a part of C++. The blog contains code in Java.

Check out Java online tutorial here on Bitwise shift operators. It says

The unsigned right shift operator ">>>" shifts a zero into the leftmost position, while the leftmost position after ">>" depends on sign extension.

The >>> operator is in a Java code snippet, and it is the unsigned right shift operator . It differs from the >> operator in its treatment of signed values: the >> operator applies sign extension during the shift, while the >>> operator just inserts a zero in the bit positions "emptied" by the shift.

Sadly, in C++ there's no such thing as sign-preserving and unsigned right shift, we have only the >> operator, whose behavior on negative signed values is implementation-defined. To emulate a behavior like the one of >>> you have to perform some casts to unsigned int before applying the shift (as shown in the code snippet immediately following the one you posted).

>>> is not C++ operator. I think it's an operator in Java language. I'm not sure though!

EDIT:

Yes. That is java operator. Check out the link to the article you provided. The article is using Java language!

>>> is the logical right shift operator in Java .

It shifts in a zero on the left rather than preserving the sign bit. The author of the blog post even provides a C++ implementation:

mid = ((unsigned int)low + (unsigned int)high)) >> 1;

... if you right-shift unsigned numbers, preserving the sign bit doesn't make any sense (since there is no sign bit) so the compiler obviously uses logical shifts rather than arithmetic ones.

The above code exploits the MSB (32rd bit assuming 32 bit integers): adding low and high which are both nonnegative integers and fit thus into 31 bits never overflows the full 32 bits, but it extends to the MSB. By shifting it to the right, the 32 bit number is effectively divided by two and the 32rd bit is cleared again, so the result is positive.

The truth is that the >>> operator in Java is just a workaround for the fact that the language does not provide unsigned data types.

It is a java operator, not related to C++.

However all the blog author does is change the division by 2 with a bit-wise right shift (ie right shifting the value by 1 is similar to dividing by 2 ^ 1 ).

Same functionality, different machine code output (bit shifting operations are almost always faster than multiplication/division on most architectures).

Java表达式x >>> y或多或少等同于C ++表达式unsigned(x) >> y

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM