免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2918 | 回复: 6
打印 上一主题 下一主题

[C] 请教整型比较时候的类型提升问题 [复制链接]

论坛徽章:
7
IT运维版块每日发帖之星
日期:2015-08-29 06:20:00IT运维版块每日发帖之星
日期:2015-08-29 06:20:00平安夜徽章
日期:2015-12-26 00:06:30技术图书徽章
日期:2016-02-03 16:35:252016猴年福章徽章
日期:2016-02-18 15:30:34fulanqi
日期:2016-06-17 17:54:25C
日期:2016-10-25 16:08:32
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-10-12 18:47 |只看该作者 |倒序浏览
代码如下,请教为何short和int在比较时候类型提升的结果不一致 ....
==========
user@user:~/Documents/CStudy$ cat typeUp.c
#include <stdio.h>

int main()
{
    short a1 = -1;
    unsigned short a2 = 1;
    if(a1 < a2)
        printf("-1 < 1\n");
    else
        printf("-1 > 1\n");

    int b1 = -1;
    unsigned int b2 = 1;
    if(b1 < b2)
        printf("-1 < 1\n");
    else
        printf("-1 > 1\n");


    return 0;
}
user@user:~/Documents/CStudy$ gcc typeUp.c -o typeUp
user@user:~/Documents/CStudy$ ./typeUp
-1 < 1
-1 > 1

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2014-10-13 08:16 |只看该作者
大概是第一个都提升到int,第二个都提升到unsigned int吧

论坛徽章:
14
巨蟹座
日期:2013-11-19 14:09:4615-16赛季CBA联赛之青岛
日期:2016-07-05 12:36:0515-16赛季CBA联赛之广东
日期:2016-06-29 11:45:542015亚冠之全北现代
日期:2015-07-22 08:09:472015年辞旧岁徽章
日期:2015-03-03 16:54:15巨蟹座
日期:2014-12-29 08:22:29射手座
日期:2014-12-05 08:20:39狮子座
日期:2014-11-05 12:33:52寅虎
日期:2014-08-13 09:01:31巳蛇
日期:2014-06-16 16:29:52技术图书徽章
日期:2014-04-15 08:44:01天蝎座
日期:2014-03-11 13:06:45
3 [报告]
发表于 2014-10-13 08:22 |只看该作者
第一个,都提升到 int,即 if( -1 < 1 )
第二个,都提升到 unsigned int,即 if( -1u < 1u )

论坛徽章:
6
2015年辞旧岁徽章
日期:2015-03-05 16:13:092015年迎新春徽章
日期:2015-03-05 16:13:092015小元宵徽章
日期:2015-03-06 15:58:1815-16赛季CBA联赛之浙江
日期:2016-11-05 14:38:4115-16赛季CBA联赛之新疆
日期:2016-11-11 18:38:06
4 [报告]
发表于 2014-10-13 09:12 |只看该作者
为什么提升后的类型不同,是因为按需提升。

第1例提升到int就足以装下signed/unsigned short,所以提升到int就够了,需扩展数位,使用有带符号比较指令。

第2例由于有unsigned int 的存在,int就需要进一步提升到 unsigned int。但因为数据位数不变,并不会实际扩展,仅表现在比较指令改成无符号比较。

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
5 [报告]
发表于 2014-10-13 10:58 |只看该作者
c语言标准中有两个概念:integer promotion和arithmetic conversion,你可以google一下

论坛徽章:
1
巨蟹座
日期:2014-03-18 23:44:30
6 [报告]
发表于 2014-10-14 00:38 |只看该作者
http://www.idryman.org/blog/2012/11/21/integer-promotion/
这里讲得好详细
c99 规定: 所有长度小于 int  的 都转成 int 比较
所以 unsigned char x = 0xFF ;    char y = 0xFF;
x != y

论坛徽章:
0
7 [报告]
发表于 2014-10-16 10:19 |只看该作者
按照标准
b1 < b2
会转成unsigned int后进行比较

3.2.1.5 Usual arithmetic conversions

   Many binary operators that expect operands of arithmetic type cause
conversions and yield result types in a similar way.  The purpose is
to yield a common type, which is also the type of the result.  This
pattern is called the usual arithmetic conversions: First, if either
operand has type long double, the other operand is converted to long
double .  Otherwise, if either operand has type double, the other
operand is converted to double.  Otherwise, if either operand has
type float, the other operand is converted to float.  Otherwise, the
integral promotions are performed on both operands.  Then the
following rules are applied: If either operand has type unsigned long
int, the other operand is converted to unsigned long int.
Otherwise, if one operand has type long int and the other has type
unsigned int, if a long int can represent all values of an unsigned
int, the operand of type unsigned int is converted to long int ; if a
long int cannot represent all the values of an unsigned int, both
operands are converted to unsigned long int.  Otherwise, if either
operand has type long int, the other operand is converted to long int.
Otherwise, if either operand has type unsigned int, the other
operand is converted to unsigned int.
  Otherwise, both operands have
type int.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP