📜  Golang 中的 time.Location.String()函数示例

📅  最后修改于: 2021-10-24 14:16:16             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Location.String()函数用于查找为时区数据声明的解释名称,相当于传递给LoadLocationFixedZone方法的 name 参数。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (l *Location) String() string

这里,“l”是要使用的位置的名称,*Location 是指向该位置的指针。其中,“位置”形成使用中的时间偏移集。

返回值:它返回为时区数据声明的解释性名称。

示例 1:

// Golang program to illustrate the usage of
// Location.String() 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 Location.String()
    // method and printing
    // location name
    fmt.Println(locat.String())
}

输出:

Asia/Kolkata

此处返回印度的 IANA 时区,因为没有错误。

示例 2:

// Golang program to illustrate the usage of
// Location.String() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Calling FixedZone method
    // with its parameter
    location := time.FixedZone("UTC-7", -7*50*50)
  
    // Calling Location.String() 
    // method and printing
    // the stated location
    fmt.Println(location.String())
}

输出:

UTC-7