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

📅  最后修改于: 2021-10-25 03:05:47             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的In()函数用于查找表示相同时刻的所述“t”的副本,但该副本的位置数据设置为“loc”以供显示使用。如果“loc”为零,则返回 panic。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) In(loc *Location) Time

这里,“t”是规定的时间,“loc”是规定的位置,它是指向该位置的指针。

返回值:它返回表示相同时刻的所述“t”的副本,但连同副本的位置数据设置为“loc”以供显示使用。如果“loc”为零,则返回 panic。

示例 1:

// Golang program to illustrate the usage of
// Time.In() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t for In method
    t := time.Date(2019, 12, 13, 3, 23, 43, 02, time.UTC)
  
    // Defining loc parameter of In method
    loc := time.FixedZone("UTC", 6*54*44)
  
    // Calling In() method
    res := t.In(loc)
  
    // Prints output
    fmt.Printf("%v\n", res)
}

输出:

2019-12-13 07:21:19.000000002 +0357 UTC

示例 2:

// Golang program to illustrate the usage of
// Time.In() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t for In method
    t := time.Date(2022, 23, 45, 36, 67, 88, 667, time.UTC)
  
    // Defining loc parameter of In method
    loc := time.FixedZone("UTC-6", -3*66*77)
  
    // Calling In() method
    res := t.In(loc)
  
    // Prints output
    fmt.Printf("%v\n", res)
}

输出:

2023-12-16 08:54:22.000000667 -0414 UTC-6

这里,上述代码中的“t”值超出了通常的范围,但它们在转换时被归一化。