码迷,mamicode.com
首页 > 其他好文 > 详细

fmt.Sprintf strconv.Itoa 效率实验

时间:2014-11-05 21:19:27      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   for   sp   div   

 1 package main
 2 
 3 import (
 4     "fmt"
 5     "strconv"
 6     "time"
 7 )
 8 
 9 const LOOP = 100000
10 
11 var num int64 = 10
12 
13 func main() {
14     startTime := time.Now()
15     for i := 0; i < LOOP; i++ {
16         fmt.Sprintf("%d", i)
17     }
18     fmt.Printf("fmt.Sprintf taken: %v\n", time.Since(startTime))
19 
20     startTime = time.Now()
21     for i := 0; i < LOOP; i++ {
22         strconv.Itoa(i)
23     }
24     fmt.Printf("strconv.FormatInt taken: %v\n", time.Since(startTime))
25 }

得到的结果为

fmt.Sprintf taken: 23.0013ms

strconv.FormatInt taken: 4.0002ms

 

参考:http://deanthompson.github.io/tag/golang.html

fmt.Sprintf strconv.Itoa 效率实验

标签:style   blog   http   io   color   ar   for   sp   div   

原文地址:http://www.cnblogs.com/yumuxu/p/4077234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!