在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言的Time.Location()函数用于检查与“t”相关联的时区的数据。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。
句法:
func (t Time) Location() *Location
这里,“t”是规定的时间,*Location 是指向位置的指针。
返回值:返回与“t”相关联的时区信息。
示例 1:
// Golang program to illustrate the usage of
// Time.Location() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining t for calling Location method
t := time.Date(2019, 2, 11, 10, 03, 00, 00, time.UTC)
// Calling Location method
loc := t.Location()
// Prints output
fmt.Printf("%v\n", loc)
}
输出:
UTC
示例 2:
// Golang program to illustrate the usage of
// Time.Location() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining location using FixedZone method
location := time.FixedZone("UTC-7", -6*56*34)
// Defining t for calling Location method
t := time.Date(2019, 2, 11, 10, 03, 00, 00, location)
// Calling Location method
loc := t.Location()
// Prints output
fmt.Printf("%v\n", loc)
}
输出:
UTC-7
这里使用 FixedZone() 方法来定义 Date() 方法的位置参数,以便根据该位置返回输出中的时区数据。