当我提供一个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@
您必须将值转换为正确的类型:
原文链接:https://www.f2er.com/go/186883.htmlimport( "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类型,因此它会给您一个错误,您没有使用正确的类型.