dsf8897 2018-03-09 10:47
浏览 36
已采纳

为什么时间格式和解析会给出不同的结果?

I'm taking the current time and format it and parse it back. When I compare the result with the current time they are not equal.

Here is a playground example: https://play.golang.org/p/DDFzi1t8v_-

t := time.Now()
formatted := t.Format("2006-01-02 15:04:05.000 -0700")
parsed, _ := time.Parse("2006-01-02 15:04:05.000 -0700", formatted)
fmt.Println(parsed.Equal(t))

This is working on the playground but not in my local computer because my timezone is +0300.

Here is the output of the same code on my computer:

t         :  2018-03-09 13:38:37.229832 +0300 +03 m=+0.000440904
formatted :  2018-03-09 13:38:37.229 +0300
parsed    :  2018-03-09 13:38:37.229 +0300 +03
false

How can I make them equal?

  • 写回答

1条回答 默认 最新

  • doumingo04696 2018-03-09 11:07
    关注

    The difference is on the precision of the date.

    Your time.Now() returns a result with 6 decimals (Microseconds) and you try to format a time with 3 decimals (Milliseconds).

    You have to Round your time at Milliseconds like that :

    t := time.Now().Round(time.Millisecond)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog