在Go中,给定位置名称,我们如何确定该位置的当前时间?

时间:2015-04-12 18:42:53

标签: datetime time go datetimeoffset

我们无法使用Zone()返回的偏移量:

package main

import "fmt"
import "time"

func main() {
    loc, _ := time.LoadLocation("America/Los_Angeles")
    t := time.Date(2015,04,12,19,23,0,0,loc)
    t2 := time.Date(2015,03,1,19,23,0,0,loc)
    _, offset := t.Zone()
    _, offset2 := t.Zone()
    fmt.Printf("t1: %v  offset: %d\n", t, offset)
    fmt.Printf("t2: %v  offset: %d\n", t2, offset2)
}

返回:

t1: 2015-04-12 19:23:00 -0700 PDT  offset: -25200
t2: 2015-03-01 19:23:00 -0800 PST  offset: -25200

偏移量不反映夏令时。 在格式化时间实例后,手动解析偏移量是唯一的选项(-0700和-0800)?

我们可以使用time.Now()检索当前时间,但使用.In()只需更改位置而不调整小时和分钟。

1 个答案:

答案 0 :(得分:3)

修复程序中的错误。例如,

package main

import "fmt"
import "time"

func main() {
    loc, _ := time.LoadLocation("America/Los_Angeles")
    t := time.Date(2015, 04, 12, 19, 23, 0, 0, loc)
    t2 := time.Date(2015, 03, 1, 19, 23, 0, 0, loc)
    _, offset := t.Zone()
    _, offset2 := t2.Zone()
    fmt.Printf("t1: %v  offset: %d\n", t, offset)
    fmt.Printf("t2: %v  offset: %d\n", t2, offset2)
}

输出:

t1: 2015-04-12 19:23:00 -0700 PDT  offset: -25200
t2: 2015-03-01 19:23:00 -0800 PST  offset: -28800