Maison > Questions et réponses > le corps du texte
我在看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也问了下,答案也不理想。有高人能解答吗?