最有效率的算出2*8的結果

 >>,>>>,<<的用法:
    *  <<:左移    左邊最高位丟棄,右邊補齊0
    *  >>:右移    最高位是0,左邊補齊0;最高爲是1,左邊補齊1
    *  >>>:無符號右移 不管最高位是0仍是1,左邊補齊0spa

代碼:code

class Hello2 {
    public static void main(String[] args) {
            System.out.println(2 << 3);

    }

}

結果:blog

相關文章
相關標籤/搜索