Reading a book about the Java language, I came across some operators that I had never seen before. They are: >>
, <<
, >>=
, <<=
, >>>
, <<<
, >>>=
and <<<=
. I suppose that knowing the difference between only two of these operations being >>=
and >>>=
, it is possible to clarify about all the others.
What is the difference between >>=
and >>>=
? In what situation can they be applied?