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


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


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的Unix()函数用于产生本地时间,该时间与UTC中自1970年1月1日起的Unix时间有关。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。

用法:

func Unix(sec int64, nsec int64) Time

在此,“sec”是秒,其类型为int64,而“nsec”是纳秒,其类型也是int64。

注意:允许“nsec”超出[0,999999999]范围是合理的。但是,并非每个“sec”值都具有等效的时间值,并且一个类似的值是1 << 63-1,这是最大的int64值。

返回值:它返回本地时间,该时间等于1970年1月1日在UTC开始的Unix时间。



范例1:

// Golang program to illustrate the usage of 
// time.Unix() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Calling Unix method with 275 seconds 
    // and zero nanoseconds and also 
    // printing output 
    fmt.Println(time.Unix(275, 0).UTC()) 
  
    // Calling Unix method with 0 seconds and 
    // 566 nanoseconds and also printing 
    // output 
    fmt.Println(time.Unix(0, 566).UTC()) 
  
    // Calling Unix method with 456 seconds and 
    // -67 nanoseconds and also printing 
    // output 
    fmt.Println(time.Unix(456, -67).UTC()) 
}

输出:

1970-01-01 00:04:35 +0000 UTC
1970-01-01 00:00:00.000000566 +0000 UTC
1970-01-01 00:07:35.999999933 +0000 UTC

范例2:

// Golang program to illustrate the usage of 
// time.Unix() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Calling Unix method with 2e1 seconds 
    // and zero nanoseconds and also 
    // printing output 
    fmt.Println(time.Unix(2e1, 0).UTC()) 
  
    // Calling Unix method with 0 seconds and 
    // 1e13 nanoseconds and also printing 
    // output 
    fmt.Println(time.Unix(0, 1e13).UTC()) 
  
    // Calling Unix method with 1e1 seconds and 
    // -1e15 nanoseconds and also printing 
    // output 
    fmt.Println(time.Unix(1e1, -1e15).UTC()) 
}

输出:

1970-01-01 00:00:20 +0000 UTC
1970-01-01 02:46:40 +0000 UTC
1969-12-20 10:13:30 +0000 UTC

在此,上述代码中所述的Unix()方法的参数具有包含常数“e”的值,该常数在转换时会在通常范围内转换。




相关用法


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