C语言中的 “>>”与“<<”

2021-02-09 16:18

阅读:600

标签:溢出   pre   std   语言   short   class   不包含   情况   int   

1.

int x = 16; printf("%d\n", x >> 1);

先将x转成二进制 10000, 不读最后一位, 输出 1000, 即为8;

2.

int x = 16; printf("%d\n", x
先将x转成二进制 10000, 往最后再读取一位(0, 或根据是否已经有移位), 输出 100000, 即为32;

以上不包含溢出情况, 且只有能用在int、short int、long int,可能有错漏。

#include 

int main()
{
    int x = 16;
    printf("%d\n", x >> 3);
    printf("%d\n", x >> 2);
    printf("%d\n", x >> 1);

    printf("%d\n", x 

结果为

2
4
8
128
64
32

>”与“C语言中的 “>>”与“

标签:溢出   pre   std   语言   short   class   不包含   情况   int   

原文地址:https://www.cnblogs.com/huangyuechujiu/p/12750798.html


评论


亲,登录后才可以留言!