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

float2int

时间:2015-04-18 01:06:37      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

 

flaot转int时,会直接舍弃小数为,但是当把f所在的地址的数据当成int解析时,就是另外的情况了。

 

#include<iostream>
using namespace std;

int main()
{
    float f= 5.2;
    
    int *p = (int*)&f;
    cout << (int)f << endl;
    cout << *p << endl;

    return 0;
}

 

 

输出

5
1084647014

 

float2int

标签:

原文地址:http://www.cnblogs.com/diegodu/p/4436408.html

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