标签: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