golang有本地日期概念吗?

Does golang have a local date concept?

golang 的时间包(或任何其他库)是否支持本地日期的概念?
按本地日期,我指的是 joda time 支持的概念,即没有时间或时区的日期。

您引用的包使用 UTC :

This chronology will be set internally to be in the UTC time zone for all calculations.

您可以简单地 get the UTC time 使用 time 包并对其进行计算。