英文:
How to set nsec to zero for a time.Time typed value
问题
有一个从当前时间创建的time.Time值,有没有快速的方法将其“nsec”字段设置为零?因为在我的情况下,这部分对应到MySQL中的第二级日期时间字段是没有用的。
英文:
There's a time.Time value created from current time, is there any quick way to set its "nsec" field to zero? As this part in my case is not useful to map to a second level date time field in mysql.
答案1
得分: 4
使用time.Truncate
和time.Second
:
> Truncate
函数将t
向下舍入为d
的倍数(自零时间以来)。如果d <= 0
,则Truncate
函数返回t
不变。
Playground:http://play.golang.org/p/go-IdYU18E。
英文:
Use time.Truncate
with time.Second
:
>Truncate returns the result of rounding t down to a multiple of d (since the zero time). If d <= 0, Truncate returns t unchanged.
Playground: http://play.golang.org/p/go-IdYU18E.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论