摘要: package main import ( "fmt" "strconv" "time" ) func test() { str := "" for i := 0; i < 100000; i++ { str += "hello" + strconv.Itoa(i) //将int转为字符串 } } 阅读全文
posted @ 2021-05-10 22:01 不吃肉的羊 阅读(238) 评论(0) 推荐(0) 编辑