Unsigned right shift by one bit in Java, similar to division by 2 operation

Unsigned right shift by one bit in Java, similar to division by 2 operation

public void test2() {
    
    
        int m = 8 >>> 1; 
        System.out.println(m);
    }

おすすめ

転載: blog.csdn.net/qq_43409973/article/details/130566830