当前位置:  开发笔记 > 编程语言 > 正文

将int转换为float到hex

如何解决《将int转换为float到hex》经验,为你挑选了1个好方法。



1> Michael Buen..:

试试这个:

int i = 2;
float f = (float)i;
printf("%#08X", *( (int*) &f ));

[编辑]

@Corey:

让我们从里到外解析它:

&  f = address of f = say address 0x5ca1ab1e
(int*)  &f = interpret the address 0x5ca1ab1e as integer pointer
*  ((int*)&f) = get the integer at address 0x5ca1ab1e

以下更简洁,但很难记住C语言的运算符关联性和运算符优先级(我更喜欢一些添加的括号和空格提供的额外清晰度):

printf("%#08X", *(int*)&f);

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有