当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang time.Time.In()用法及代码示例


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的In()函数用于查找表示相同时刻的声明的“t”的副本,以及该副本的位置数据(设置为“loc”以供显示)。如果“loc”为nil,则返回恐慌。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。

用法:

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

在此,“t”是指定时间,“loc”是指定位置,是指向该位置的指针。

返回值:它会返回表示相同时刻的声明的“t”的副本,并返回该副本的位置数据(已设置为“loc”用于显示)。如果“loc”为nil,则返回恐慌。

范例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”的值在通常范围之外,但在转换时已标准化。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.Time.In() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。