其他分享
首页 > 其他分享> > golang中浮点型底层存储原理

golang中浮点型底层存储原理

作者:互联网

var price float32 = 39.29

 

 

 

 float64和float32类似,只是用于表示各部分的位数不同而已,其中:sign=1位,exponent=11位,fraction=52位,也就意味着可表示的范围更大了。

 

标签:exponent,price,golang,浮点,fraction,var,float32,底层
来源: https://www.cnblogs.com/mayanan/p/15369484.html