猿问

返回本地开始时间对象

为了获得今天时间对象的本地开始,我提取了 YMD 并重建了新日期。这看起来像一个杂七杂八的东西。我是否想念其他一些标准库函数?


代码也可以在http://play.golang.org/p/OSRl0nxyB7 上运行:


func Bod(t time.Time) time.Time {

    year, month, day := t.Date()

    return time.Date(year, month, day, 0, 0, 0, 0, t.Location())

}


func main() {

    fmt.Println(Bod(time.Now()))

}


慕无忌1623718
浏览 195回答 2
2回答
随时随地看视频慕课网APP

相关分类

Go
我要回答