我正在尝试转换从文件读取的字节数组,实际上恰好是一个浮点数。我可以继续使用strconv.ParseFloat
,但我想知道是否有任何更快方法来实现这一点,而不是这个字符串转换开销?
以下代码段来自另一篇文章:here但显然它不适用于上述情况。
提前感谢您的建议。
package main
import (
"encoding/binary"
"fmt"
"math"
)
func Float64frombytes(bytes []byte) float64 {
bits := binary.LittleEndian.Uint64(bytes)
float := math.Float64frombits(bits)
return float
}
func main() {
// This is read from a file, so its avaible as a byte array
input := []byte("1.11")
// This throws an exception obviously.
float := Float64frombytes()
fmt.Println(float)
}
答案 0 :(得分:1)
不,没有其他方法可以做到这一点。
你列为非工作替代品的方法将是最好的方法如果浮动直接存储在二进制文件中,但由于它存储为字符串strconv.ParseFloat
是唯一的方法。
对不起。