问答详情
源自:3-5 在不同容器之间倒腾:基本数据之间的转换

强制转换也是不行的!

示例代码是:

#include <stdio.h>



int main(int argc,char **argv)

{

    int a = 100 ;

    short b = (short)a ;

    printf("%d\n",b);

    return 0;

}

以上本身在short数据类型就没有溢出,而当a 赋值本身就很大时一样会报错。

如:

#include <stdio.h>



int main(int argc,char **argv)

{

    int a = 10000000000000 ;

    short b = (short)a ;

    printf("%d\n",b);

    return 0;

}

运行结果

index.cpp: In function 'int main(int, char**)':

index.cpp:6:13: warning: overflow in implicit constant conversion [-Woverflow]

     int a = 10000000000000 ;

             ^~~~~~~~~~~~~~

-24576



提问者:weixin_慕UI5047479 2022-12-28 09:42

个回答

  • 慕村2333375
    2022-12-30 20:48:27

    int是4个字节,32位bit(1位符号+31位数字),取值范围(+2,147,483,647   ~  -2,147,483,648),你的变量int a = 10000000000000 大于int的上界所以报错;