91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中的移動位運算實例講解

發布時間:2021-09-02 10:34:52 來源:億速云 閱讀:115 作者:chen 欄目:編程語言

本篇內容介紹了“java中的移動位運算實例講解”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1. 概念

<< 左移運算符,左移是在后面補0, num << 1,相當于num乘以2
>> 右移運算符, 右移是在前面補1或0,num >> 1, 相當于num除以2
>>> 無符號右移,是在前面補0, 忽略符號位,空位都以0補齊
另外, 不論是左右還是右移32位,相當于不移動,還是原值。

實際上 在java虛擬機執行這句代碼的時候如下這樣執行的:
5>>(n%32)--->結果
你這里n=32 ;所以5>>32即是 5>>(32%32)-->5>>0 的結果;

 2. 測試代碼

public class Test{
 public Test(){
 System.out.println("=============算術右移 >> ===========");
 int i=0xC0000000;
 System.out.println("移位前:i= "+i+" = "+Integer.toBinaryString(i)+"(B)");
 i=i>>28;
 System.out.println("移位后:i= "+i+" = "+Integer.toBinaryString(i)+"(B)");
 
 System.out.println("---------------------------------");
 
 int j=0x0C000000;
 System.out.println("移位前:j= "+j+" = "+Integer.toBinaryString(j)+"(B)");
 j=j>>24;
 System.out.println("移位后:j= "+j+" = "+Integer.toBinaryString(j)+"(B)");
 
 System.out.println("\n");
 System.out.println("==============邏輯右移 >>> =============");
 int m=0xC0000000;
 System.out.println("移位前:m= "+m+" = "+Integer.toBinaryString(m)+"(B)");
 m=m >>> 28;
 System.out.println("移位后:m= "+m+" = "+Integer.toBinaryString(m)+"(B)");
 
 System.out.println("---------------------------------");
 
 int n=0x0C000000;
 System.out.println("移位前:n= "+n+" = "+Integer.toBinaryString(n)+"(B)");
 n=n>>24;
 System.out.println("移位后:n= "+n+" = "+Integer.toBinaryString(n)+"(B)");
 
 System.out.println("\n");
 System.out.println("==============移位符號的取模===============");
 int a=0xCC000000;
 System.out.println("移位前:a= "+a+" = "+Integer.toBinaryString(a)+"(B)");
 System.out.println("算術右移32:a="+(a>>32)+" = "+Integer.toBinaryString(a>>32)+"(B)");
 System.out.println("邏輯右移32:a="+(a>>>32)+" = "+Integer.toBinaryString(a>>>32)+"(B)");
 
 System.out.println("算術右移64:a="+(a>>64)+" = "+Integer.toBinaryString(a>>64)+"(B)");
 System.out.println("邏輯右移64:a="+(a>>>64)+" = "+Integer.toBinaryString(a>>>64)+"(B)");
 
 }
 
 public static void main(String[] args){
 new Test();
 }
 
}

運行結果:

=============算術右移 >> ===========
移位前:i= -1073741824 = 11000000000000000000000000000000(B)
移位后:i= -4 = 11111111111111111111111111111100(B)

移位前:j= 201326592 = 1100000000000000000000000000(B)
移位后:j= 12 = 1100(B)

==============邏輯右移 >>> =============
移位前:m= -1073741824 = 11000000000000000000000000000000(B)
移位后:m= 12 = 1100(B)

移位前:n= 201326592 = 1100000000000000000000000000(B)
移位后:n= 12 = 1100(B)

==============移位符號的取模===============
移位前:a= -872415232 = 11001100000000000000000000000000(B)
算術右移32:a=-872415232 = 11001100000000000000000000000000(B)
邏輯右移32:a=-872415232 = 11001100000000000000000000000000(B)
算術右移64:a=-872415232 = 11001100000000000000000000000000(B)
邏輯右移64:a=-872415232 = 11001100000000000000000000000000(B)

3. 為什么沒有無符號左移

這個問題大家可以思考一下,應該能想出來。(提示:沒有就是沒有存在的意思)

“java中的移動位運算實例講解”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

全南县| 崇仁县| 株洲市| 安溪县| 湖口县| 蒲城县| 阿合奇县| 巴林左旗| 曲水县| 泸州市| 南汇区| 汶上县| 梅河口市| 临清市| 惠安县| 黄梅县| 桦川县| 丹阳市| 临沂市| 新余市| 南部县| 岚皋县| 藁城市| 濮阳市| 信阳市| 上蔡县| 大足县| 南投市| 云梦县| 东兰县| 拉萨市| 察隅县| 宁夏| 乳源| 贵南县| 东乡| 苗栗市| 海晏县| 凉城县| 两当县| 井研县|