在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的LoadLocation()函数用于查找具有指定名称的位置。因此,如果声明的名称是“UTC”,则返回UTC ;如果声明的名称是“Local”,则返回Local 。否则,假定要使用的名称是相当于 IANA 时区数据库中的文件的位置。此数据库仅存在于 Unix 系统上。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。
句法:
func LoadLocation(name string) (*Location, error)
这里,“name”是要使用的位置的名称,*Location 是指向该位置的指针。其中“位置”形成使用中的时间偏移集。而“错误”是一个恐慌错误。
返回值:它返回具有指定名称的位置。
示例 1:
// Golang program to illustrate the usage of
// LoadLocation() function
// Including main package
package main
// Importing fmt and time
import (
"fmt"
"time"
)
// Calling main
func main() {
// Calling LoadLocation
// method with its parameter
locat, error := time.LoadLocation("Asia/Kolkata")
// If error not equal to nil then
// return panic error
if error != nil {
panic(error)
}
// Prints location
fmt.Println(locat)
}
输出:
Asia/Kolkata
此处返回印度的 IANA 时区,因为没有错误。
示例 2:
// Golang program to illustrate the usage of
// LoadLocation() function
// Including main package
package main
// Importing fmt and time
import (
"fmt"
"time"
)
// Calling main
func main() {
// Calling LoadLocation
// method with its parameter
locat, error := time.LoadLocation("Asia/Kolkata")
// If error not
// equal to nil then
// return panic error
if error != nil {
panic(error)
}
// Calling Date() method
// with its parameter
tm := time.Date(2020, 4, 7, 16,
7, 0, 0, time.UTC)
// Prints the time and date
// of the stated location
fmt.Println(tm.In(locat))
}
输出:
2020-04-07 21:37:00 +0530 IST
在这里,首先调用 LoadLocation() 方法,然后调用 Date() 方法及其参数,即日期和时间,然后返回指定位置的日期和时间。