码迷,mamicode.com
首页 > 其他好文 > 详细

有符号和无符号类型运算

时间:2016-11-26 17:53:38      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:color   int   无符号   ios   images   技术   div   turn   http   

#include <iostream>


int main()
{
    unsigned i = 10 , j = 30 ;
    int m = -42 , n = 30 ;


    std::cout<<i-j<<std::endl;

    std::cout<<m*i<<std::endl;

    std::cout<<unsigned(-420)<<std::endl;

    return 0 ;
}

 结论:有符号和无符号类型相运算(加减乘除),先运算再将结果转化为无符号类型,而不是先转化再运算。

技术分享

 

有符号和无符号类型运算

标签:color   int   无符号   ios   images   技术   div   turn   http   

原文地址:http://www.cnblogs.com/guozhikai/p/6104499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!