在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.Zone()函数用于确定在时间“t”工作的时区。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。
句法:
func (t Time) Zone() (name string, offset int)
这里,“t”是指定的时间,返回的“name”是字符串类型,返回的“偏移量”是int类型。
返回值:它返回缩短的区域名称及其在 UTC 以东的秒数的偏移量。
示例 1:
// Golang program to illustrate the usage of
// Time.Zone() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining location using FixedZone method
loc := time.FixedZone("UTC-7", 1*13*16)
// Declaring t for Zone method
t := time.Date(2014, 6, 5, 11, 56, 45, 05, loc)
// Calling Zone() method
zone_name, offset := t.Zone()
// Prints zone name
fmt.Printf("The zone name is: %s\n", zone_name)
// Prints offset
fmt.Printf("The offset returned is: %d\n", offset)
}
输出:
The zone name is: UTC-7
The offset returned is: 208
在这里,我们使用了 FixedZone() 方法来指定区域名称和偏移量。
示例 2:
// Golang program to illustrate the usage of
// Time.Zone() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining location using FixedZone method
loc := time.FixedZone("UTC-6", -4*23*16)
// Declaring t for Zone method
t := time.Date(2014, 32, 35, 64, 76, 98, 3432, loc)
// Calling Zone() method
zone_name, offset := t.Zone()
// Prints zone name
fmt.Printf("The zone name is: %s\n", zone_name)
// Prints offset
fmt.Printf("The offset returned is: %d\n", offset)
}
输出:
The zone name is: UTC-6
The offset returned is: -1472
此处,上述“t”具有超出通常范围的值,但它们在转换时被归一化。