c++ - 估算一个类型的十进制长度
PHPz
PHPz 2017-04-17 14:51:46
0
0
523

我在看git源码的时候,发现了一个奇怪的宏:

/* Approximation of the length of the decimal representation of this type. */
#define decimal_length(x)    ((int)(sizeof(x) * 2.56 + 0.5) + 1)

看注释来说,这个宏是用来估算一个类型的十进制表示的长度的。
源码在这里

但是,如果直接算一个类型的十进制的长度的话,应该是

(int)(sizeof(x)*8*lg2+1)

化简一下就是

(int)(sizeof(x)*2.41+1)

这个直接的方法也不麻烦,所以我在想这个是不是经验公式什么的。比如2.56是不是乘法算起来比2.41快之类的。我在google也搜不到答案。去StackOverflow也问了下,答案也不理想。有高人能解答吗?

PHPz
PHPz

学习是最好的投资!

répondre à tous(0)
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!