构造日期golang时使用int作为月份

前端之家收集整理的这篇文章主要介绍了构造日期golang时使用int作为月份前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我提供一个int作为time.Date for month的参数时,它可以工作( Example):
time.Date(2016,1,time.UTC)

为什么,当我尝试将字符串转换为int然后使用该变量时,我得到错误

cannot use mStr (type int) as type time.Month in argument to time.Date

示例:@L_404_1@

您必须将值转换为正确的类型:
import(
    "fmt" 
    "time" 
    "strconv"
) 

func main() {
    var m,_ = strconv.Atoi("01")
     // Now convert m to type time.Month 
    fmt.Println(time.Date(2016,time.Month(m),time.UTC))
}

您将它转换为int类型,但time.Date()的第二个参数是time.Month类型,因此它会给您一个错误,您没有使用正确的类型.

原文链接:https://www.f2er.com/go/186883.html

猜你在找的Go相关文章