免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: syoubin_sai
打印 上一主题 下一主题

[C] 请教C语言牛人----关于int与unsigned int的奇怪问题 [复制链接]

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
31 [报告]
发表于 2010-06-11 13:02 |只看该作者
trap不算什么,在没有除法的ARM上,编译器通过一个函数实现除法。

论坛徽章:
0
32 [报告]
发表于 2010-06-11 14:39 |只看该作者
太深入啦。。。。
努力向大牛们学习中

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
33 [报告]
发表于 2010-06-12 06:00 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
34 [报告]
发表于 2010-06-12 09:08 |只看该作者
学C语言,要能看懂汇编语言会方便的多。

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
35 [报告]
发表于 2010-06-12 09:12 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
36 [报告]
发表于 2010-06-12 09:48 |只看该作者
  1. MacBookPro tmp $ cat a.c
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <assert.h>
  5. #include <limits.h>
  6. int main ()
  7. {
  8.         int last_jobid = INT_MAX;

  9.         printf ("%0x\n", INT_MAX);
  10.         printf ("%0x\n", INT_MAX+1);

  11.         if (last_jobid+1 > (unsigned int)INT_MAX) {
  12.                 printf("ok\n");
  13.         }
  14.         return 0;
  15. }
  16. MacBookPro tmp $ gcc -v
  17. Using built-in specs.
  18. Target: i686-apple-darwin10
  19. Configured with: /var/tmp/gcc/gcc-5659~1/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
  20. Thread model: posix
  21. gcc version 4.2.1 (Apple Inc. build 5659)
  22. MacBookPro tmp $ gcc a.c
  23. a.c: In function ‘main’:
  24. a.c:10: warning: integer overflow in expression
  25. MacBookPro tmp $ file a.out
  26. a.out: Mach-O 64-bit executable x86_64
  27. MacBookPro tmp $ ./a.out
  28. 7fffffff
  29. 80000000
  30. ok
  31. MacBookPro tmp $ gcc -m32 a.c
  32. a.c: In function ‘main’:
  33. a.c:10: warning: integer overflow in expression
  34. MacBookPro tmp $ file a.out
  35. a.out: Mach-O executable i386
  36. liuleideMacBookPro tmp $ ./a.out
  37. 7fffffff
  38. 80000000
  39. ok
  40. MacBookPro tmp $
复制代码

论坛徽章:
0
37 [报告]
发表于 2010-06-12 18:06 |只看该作者
数据溢出后, 使用那个数据去进行运算, 行为是未定义的。

此例中, 1和3 的代码是等价的。
因为(last_jobid+1 > (unsigned int)INT_MAX) 和 ((unsigned int)(last_jobid+1 > (unsigned int)INT_MAX)没区别, 前者是隐式转换, 后者是显式转换。

2是没问题的代码。

论坛徽章:
0
38 [报告]
发表于 2010-06-12 22:51 |只看该作者
根据鸡蛋的形状并不能推断出鸡屁股的构造
pmerofc 发表于 2010-06-12 09:12


只知道搬理论,找标准!装的再牛逼也没用!
明明是很浅显的问题,看一下生成的汇编代码,一目了然!

俺还没在CU上轰过谁!但确实很讨厌这种死搬硬套的书呆子!

说句实在话,不懂汇编根本不可能精通C/C++。

论坛徽章:
0
39 [报告]
发表于 2010-06-12 22:59 |只看该作者
还是贴汇编码吧,我这没64机器

论坛徽章:
0
40 [报告]
发表于 2010-06-12 23:24 |只看该作者
学C/C++到一定程度是应该了解一些汇编的。学VB.NET/C#/J#/F#也应该会一些ILDASM。编译器产生的代码不见得总是按程序员想到的来,要明白原理就得看汇编。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP