如何将time.Time类型的值的nsec设置为零

huangapple go评论79阅读模式
英文:

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.Truncatetime.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.

huangapple
  • 本文由 发表于 2015年7月8日 20:22:39
  • 转载请务必保留本文链接:https://go.coder-hub.com/31292548.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定