美文网首页
联合--union

联合--union

作者: 寒冰豌豆 | 来源:发表于2017-04-15 15:04 被阅读0次
#include<stdio.h>
//其实是对相同位序列进行不同数据类型的解释
unsigned float2unsign(float f)
{
     union {
            unsigned un;
            float fl;
     }temp_un;
     temp_un.fl =f;
    return temp_un.un ;

}
int main()
{
    float f = 10.0;
    unsigned  u = float2unsign(f);
    printf ("%u \n", u);
    printf ("%u \n", (unsigned)f);
    return 0;
}

相关文章

网友评论

      本文标题:联合--union

      本文链接:https://www.haomeiwen.com/subject/ncgnattx.html