Mega Code Archive

 
Categories / Java / Language Basics
 

Unsigned shift to the right

public class Main {   public static void main(String[] argv) throws Exception {     byte b = 11;     System.out.println(b >>> 1);    } }