有人可以告诉我 Go 编程语言如何与其他语言/库相比以不同或相似的方式处理 DateTime 吗?这纯粹是为了好奇。
这个问题更多地是关于当前可用库之间的异同 - 最好是英文,而不是一页又一页的文档。
慕神8447489
浏览 234回答 1
1回答
互换的青春
请参阅 Go时间包文档和源代码。ATime代表一个没有闰秒的纳秒精度的时间瞬间。该IANA时区数据库用于时区和夏令时。时区数据库包含代表全球许多代表性地点的当地时间历史的代码和数据。它会定期更新,以反映政治机构对时区边界、UTC 偏移量和夏令时规则所做的更改。type Time struct { // sec gives the number of seconds elapsed since // January 1, year 1 00:00:00 UTC. sec int64 // nsec specifies a non-negative nanosecond // offset within the second named by Seconds. // It must be in the range [0, 999999999]. nsec int32 // loc specifies the Location that should be used to // determine the minute, hour, month, day, and year // that correspond to this Time. // Only the zero Time has a nil Location. // In that case it is interpreted to mean UTC. loc *Location}