首页 > 代码库 > C++ basic - numeric type conversation数值类型转换
C++ basic - numeric type conversation数值类型转换
What?
在计算中涉及不同数值类型的computation,这时候,C++会按照以下顺序进行转换
order:long double>double>float>unsigned long>long>unsigned int>int
eg. (1) 1/2=0(当1和2都是int时),结果也肯定是int;
(2)1.0/2=0.5(当1.0为double,2为int时),2会被转化成doubley因为double>int
syntax for type convertion:
static_cast<type>(value)
eg. (1)cout<<static_cast<double>(1)/2<<endl
result: 0.5
(2)cout<<static_cast<int>(tax*100)/100.0
effect:keep two digits after the decimal point(保留小数点后两位)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。