📜  Golang 中的 time.Time.Local()函数示例

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

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.Local()函数用于查找设置为本地时间的位置的“t”。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) Local() Time

这里,“t”是规定的时间。

返回值:它返回“t”以及设置为本地时间的位置。

示例 1:

// Golang program to illustrate the usage of
// Time.Local() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t parameter of Local method
    t := time.Date(2019, 2, 11, 10, 
              03, 00, 00, time.UTC)
  
    // Calling Local method
    local := t.Local()
  
    // Prints output
    fmt.Printf("%v\n", local)
}

输出:

2019-02-11 10:03:00 +0000 UTC

示例 2:

// Golang program to illustrate the usage of
// Time.Local() 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 Local method
    t := time.Date(2019, 2, 11, 10, 03, 00, 00, location)
  
    // Calling Local method
    local := t.Local()
  
    // Prints output
    fmt.Printf("%v\n", local)
}

输出:

2019-02-11 13:13:24 +0000 UTC

这里使用 FixedZone() 方法来定义 Date() 方法的位置参数,以便根据该位置返回输出中的时间。