本文介绍了strconv.Itoa(time.Nanoseconds()) - 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我这样写一行代码, strconv.Itoa(time.Nanoseconds())
。但是,它给了我这个错误不能使用time.Nanoseconds()(类型为int64)作为函数参数中的int类型。如何解决这个问题?
解决方案
例如,
<$ p $ (
fmt
strconv
时间
)
包裹主
func main(){
t:= strconv.FormatInt(time.Nanoseconds(),10)
fmt.Println(t)
}
$ c
$ b
输出:
1322756865962046000
I write one go code like this, strconv.Itoa(time.Nanoseconds())
. But, it is giving me this error "cannot use time.Nanoseconds() (type int64) as type int in function argument". How can I solve this ?
解决方案
For example,
package main
import (
"fmt"
"strconv"
"time"
)
func main() {
t := strconv.FormatInt(time.Nanoseconds(), 10)
fmt.Println(t)
}
Output:
1322756865962046000
这篇关于strconv.Itoa(time.Nanoseconds()) - 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!