→ leslieha:sprintf()? 07/30 21:43
> -------------------------------------------------------------------------- <
作者: sunneo (艾斯寇德) 看板: C_and_CPP
標題: Re: [問題] float 轉 bit串
時間: Wed Jul 30 21:50:45 2008
※ 引述《Cheese27 (チーズ)》之銘言:
: 有個小問題想請教各位
: 就是一般實數 (int long float double)和其bit串(string)
: 互相轉換的方法
: 整數很好處理但是float和double
: 就有點遇到問題
: 不知道怎麼知道float和double要怎麼知道他的bit串表示方式
: 不知道有沒有好用的C或C++ function可以用
: 謝謝大家!!
可以利用struct的bit field,排好格式
並將變數跟union放在一起,使之位於同一個記憶體上。
typedef union
{
struct
{
long sign :1;
long exponent :8;
long mantissa :23;
}float_struct;
float value;
}float_union;
typedef union
{
struct
{
long sign :1;
long exponent :11;
long mantissa_hi : 32;
long mantissa_low : 20;
}double_struct;
double value;
}double_union;
之後再依照需求印出就是了。
void show_double_struct(double d)
{
double_union u;
u.value = d;
printf("Sign: %1x\n",u.double_struct.sign);
printf("Exponent: %03x\n",u.double_struct.exponent);
printf("Mantissa: %08x%-5x\n\n",
u.double_struct.mantissa_hi,
u.double_struct.mantissa_low);
}
void show_float_struct(float f)
{
float_union u;
u.value = f;
printf("Sign: %1x\n",u.float_struct.sign);
printf("Exponent: %02x\n",u.float_struct.exponent);
printf("Mantissa: %06x\n",u.float_struct.mantissa);
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.227.230.228
※ 編輯: sunneo 來自: 61.227.230.228 (07/30 21:52)
→ sunneo:至於為什麼是那樣的格式,就找找IEEE754 floating point 07/30 22:00
推 whenyouregon:bitset不行嗎?@@ 07/30 22:31
推 netsphere:不錯阿 我也會這樣寫~ 缺點是Big-Endian和Little-Endian 07/30 22:35
推 Cheese27:感謝sunneo大的解答!! 07/30 22:47
→ Cheese27:可以再請教一下 long sign :1;中的":1"的宣告代表什麼嗎? 07/30 22:48
→ sunneo:bit field,代表他佔用1bit 07/30 22:49
推 Cheese27:喔喔 了解了 再次感謝~ 07/30 22:54
> -------------------------------------------------------------------------- <
作者: MOONRAKER (㊣科學小飛俠8號又笨又禿) 看板: C_and_CPP
標題: Re: [問題] float 轉 bit串
時間: Wed Jul 30 22:38:44 2008
※ 引述《Cheese27 (チーズ)》之銘言:
: 有個小問題想請教各位
: 就是一般實數 (int long float double)和其bit串(string)
: 互相轉換的方法
: 整數很好處理但是float和double
: 就有點遇到問題
: 不知道怎麼知道float和double要怎麼知道他的bit串表示方式
: 不知道有沒有好用的C或C++ function可以用
: 謝謝大家!!
可以用指標傳入副程式,
副程式用void *接,強迫轉型為int,再用bitmask得到各個bit。
因為發現當初paste的code很快就被該站丟掉了
在這裡重貼一次 http://nopaste.org/p/aH9ASi4hl
也一併附在下面
使用效果請參考拙作 #17uX-3Vi
// fdemo: a program that demonstrates internal representation of C float
// and ought to be completed LONG LONG LONG LONG LONG LONG ago
//
// MOONRAKER
// 20 Mar 2008
#include <cstdio>
#include <cstdlib>
using namespace std;
void manifest(void *n)
{
unsigned int repres = *((int *) n);
float value = *((float *) n);
unsigned int signs, exponent, mantissa;
printf ("%10f : %08x : ", value, repres);
signs = (repres & 0x80000000) >> 31;
exponent = (repres & 0x7f800000) >> 23;
mantissa = (repres & 0x007fffff);
for (int i=31; i>=0; --i) {
printf( ((1<<i) & repres) ? "1" : "0" );
if (i==31) printf (" ");
if (i==23) printf ("/%02x(%+4d) ", exponent, exponent-127);
if (i==0) printf ("/%06x ", mantissa);
}
printf("\n");
}
main(int argc, char **argv)
{
if (argc<=1) {
printf("usage: fdemo <floatnum> [ <floatnum2> ... <floatnumN> ]\n");
exit(1);
}
// And now argc surely larger than 1
for (int i=1; i<argc; ++i)
{
float n=strtod(argv[i], NULL);
manifest(&n);
}
return 0;
}
// End of program (fdemo.cpp)
--
BATCH 03 : 買張床 - 切達大俠 - 伐木人之歌 - http://tinyurl.com/3zpyx5
[B4準備中]: 謳歌金錢(7/02) - 單車超人(7/23) - http://tinyurl.com/66v6vq
[ 番外篇 ]: 包租婆也有過當羅莉的時候(7/17) - http://tinyurl.com/6j4ale
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
■ 蒙帝派松正體中文計畫 ■ Spam-a-lot and enjoy the pythonesque delight!
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ http://www.youtube.com/user/JamesBondXD▄▄
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 59.115.198.97
推 sunneo:太棒了 以前的文章還是很值得推. 07/30 22:48
→ MOONRAKER:老大比較厲害 我一直很狐疑union這東西存在是要幹嘛的 07/31 13:45
→ MOONRAKER:這下終於找到它實際的用途 XD 07/31 13:45
推 cplusplus:用途很多啊 上網search一下.... 07/31 14:27