C語言負數的移位元運算

來源:互聯網
上載者:User

在c 中左移也就是所說的邏輯移位,右端補0,而右移是算數移位,左端補齊的是最高位的符號位。
故負數左移,有可能變成正數,但負數右移,肯定還是負數。

用16進位的形式對資料進行賦值,這16進位的數代表的是補碼。
    i = 0xfffffff7; //0xfffffff7是補碼,而不是原碼,故i = -9
    printf("%d %x\n", i, i);
    i = -9;
    printf("%d %x\n", i, i);  //故兩個printf輸出結果相同

/********************************************************************** * Compiler: GCC * Last Update:  Tue 01 May 2012 07:31:44 PM CST ************************************************************************/#include <stdio.h>int main(int argc, char **argv){       int i = 0x8000000f; //這裡的0x8000000f為int型資料的補碼形式    int j = i >> 3; //右移是算術移位,左端補齊的是符號位    int k = i << 1; //左移是邏輯移位,右端補0    printf("%d %x\n", i, i);     printf("%d %x\n", j, j);     printf("%d %x\n", k, k);     i = -9;    printf("%d %x\n", i, i);     i = 0xfffffff7;    j = i >> 3;    k = i << 1;    printf("%d %x\n", i, i);     printf("%d %x\n", j, j);     printf("%d %x\n", k, k);     return 0;}


運行結果:

-2147483633 8000000f

-268435455 f0000001
30 1e
-9 fffffff7
-9 fffffff7
-2 fffffffe
-18 ffffffee

-9的8位補碼錶示是1111 0111,即0xf7,這裡是int型,擴充成32位表示是0xfffffff7。也可以直接用32位的形式寫出-9的補碼形式。
對於signed類型的擴充,看該資料的最高位,為1,則擴充的所有位都為1,為0,則擴充的位都為0,故0xf7擴充成32位是0xfffffff7。
這裡 -9 << 1 = -18。不能簡單的從左移就相當於乘以2來理解,要從-9的補碼是0xfffffff7f去考慮。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.