Go Int轉string幾種方式性能測試

Go語言內置int轉string至少有3種方式:性能 fmt.Sprintf("%d",n)測試 strconv.Itoa(n)code strconv.FormatInt(n,10)orm 下面針對這3中方式的性能作一下簡單的測試:string package gotest import ( "fmt" "strconv" "testing" ) func BenchmarkSprin
相關文章
相關標籤/搜索