douxiaqin2062 2016-04-10 09:24
浏览 356
已采纳

golang时区夏令时不起作用

I know that on 26 Oct, 2014 02:00am the clock should go backwards 1 hour, but I can't reproduce this using a simple golang program

const timeFormat = "2 Jan, 2006 3:04pm"

loc, err := time.LoadLocation("Europe/Moscow")
log.Print(loc, err)

testz , _ := time.ParseInLocation( timeFormat, "26 Oct, 2014 01:59am",  loc)
fmt.Println( testz , testz.UTC())
testz = testz.Add( time.Minute )
fmt.Println( testz , testz.UTC())
testz = testz.Add( time.Minute )
fmt.Println( testz , testz.UTC())

outputs

2014-10-26 01:59:00 +0300 MSK 2014-10-25 22:59:00 +0000 UTC
2014-10-26 02:00:00 +0300 MSK 2014-10-25 23:00:00 +0000 UTC
2014-10-26 02:01:00 +0300 MSK 2014-10-25 23:01:00 +0000 UTC

go 1.6, linux

  • 写回答

2条回答 默认 最新

  • dongnai3960 2016-04-13 06:07
    关注

    Given your output, it looks like this line:

    testz , _ := time.ParseInLocation(timeFormat, "26 Oct, 2014 01:59am", loc)
    

    ... is actually giving you the later of the two occurrences of 1:59am, given that it's showing an offset of +3. In other words, you're looking at three minutes of time an hour later than you want to be - starting nearly an hour after the daylight saving transition.

    You can change your code to start with an unambiguous value like this:

    testz, _ := time.ParseInLocation(timeFormat, "26 Oct, 2014 00:59am", loc)
    testz = testz.Add(time.Hour)
    

    I'd expect that to then show

    2014-10-26 01:59:00 +0400 MSK 2014-10-25 21:59:00 +0000 UTC
    2014-10-26 01:00:00 +0300 MSK 2014-10-25 22:00:00 +0000 UTC
    2014-10-26 01:01:00 +0300 MSK 2014-10-25 22:01:00 +0000 UTC
    

    (I haven't tried this, as I don't have Go installed - but I'd expect it to work.)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
  • dongshanyan0322 2016-04-10 12:43
    关注

    It's not because your code has error,just for time.UTC() will print UTC time,that is timezone 0 time,and from your code time.LoadLocation("Europe/Moscow") we can know maybe you are in Moscow,which belongs to east timezone 3,so the time will be earlier than utc time by three hours,meaning that <your time>=<utc time>+3.

    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥80 关于海信电视聚好看安装应用的问题
  • ¥15 vue引入sdk后的回调问题
  • ¥15 求一个智能家居控制的代码
  • ¥15 ad软件 pcb布线pcb规则约束编辑器where the object matpcb布线pcb规则约束编辑器where the object matchs怎么没有+15v只有no net
  • ¥15 虚拟机vmnet8 nat模式可以ping通主机,主机也能ping通虚拟机,但是vmnet8一直未识别怎么解决,其次诊断结果就是默认网关不可用
  • ¥20 求各位能用我能理解的话回答超级简单的一些问题
  • ¥15 yolov5双目识别输出坐标代码报错
  • ¥15 这个代码有什么语法错误
  • ¥15 给予STM32按键中断与串口通信
  • ¥15 使用QT实现can通信