strconv 性能优于 fmt
将原语转换为字符串或从字符串转换时,strconv
速度比 fmt
更快。
Bad | Good |
---|
for i := 0; i < b.N; i++ { s := fmt.Sprint(rand.Int()) }
|
for i := 0; i < b.N; i++ { s := strconv.Itoa(rand.Int()) }
|
BenchmarkFmtSprint-4 143 ns/op 2 allocs/op
|
BenchmarkStrconv-4 64.2 ns/op 1 allocs/op
|