0与-0

编译器:Microsoft Visal studio C++6.0

代码段内容:

union Def_float
{

    float value;

    struct 

    {
    BYTE by_0; // 最低字节 
    BYTE by_1;
    BYTE by_2;
    BYTE by_3; // 最高字节
   };
};

Def_float temp;
temp.value = atof("0");
CString strT;
strT.Format("%X",temp.by_3);
AfxMessageBox(strT);  // 输出 00

 

temp.value = atof("-0");
strT.Format("%X",temp.by_3);
AfxMessageBox(strT); //输出 80

Def_float temp2;
temp2.value = -0;
strT.Format("%X",temp2.by_3);
AfxMessageBox(strT); //输出 00

 

 

原文链接: https://www.cnblogs.com/Esperanto/archive/2012/11/07/2758620.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    0与-0

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/68513

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月9日 下午1:22
下一篇 2023年2月9日 下午1:22

相关推荐