假设我有
t := time.Parse("15:04:05.000", "12:16:54.016")
这将返回一个 time.Time ,其打印结果为:
0000-01-01 12:16:54.016 +0000 UTC
但我知道实际日期是什么,并将其存储为一个名为timestamp
time.Time 结构的变量。我如何将它们结合起来?
例如,假设日期是 2019-06-17。我需要的输出是:
2019-06-17 12:16:54.016 +0000 世界标准时间
// this doesn't compilets.AddDate(timestamp.Year(), timestamp.Month(), timestamp.Day()) cannot use timestamp.Month() (type time.Month) as type int in argument to ts.AddDate
这应该是微不足道的吧?嗯,它是用 C 语言编写的,这是我最习惯的。但我还没有轻易找到golang的答案。文档没有告诉我实际的底层字段名称,只是函数。:-/
慕婉清6462132
GCT1015
相关分类