+ 1
What does >> stand for in Java
I've seen this in a question and I don't know what it means
4 Answers
+ 1
It's the right shift operator:
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/op3.html
+ 1
This thread explains it well, http://stackoverflow.com/questions/30004456/what-does-mean-in-java
Hope this helps.
0
Basically if there's a System.out.println( a >> b) ; it will display the b value?
0
Thanks Liam Keegan!