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


GO Time.Unix用法及代码示例


GO语言"time"包中"Time.Unix"类型的用法及代码示例。

用法:

func(t Time) Unix() int64

Unix 返回 t 作为 Unix 时间,即自 1970 年 1 月 1 日 UTC 以来经过的秒数。结果不依赖于与 t 关联的位置。 Unix-like 操作系统通常将时间记录为 32 位的秒数,但由于这里的方法返回一个 64 位的值,因此它在过去或未来的数十亿年中都有效。

例子:

package main

import (
	"fmt"
	"time"
)

func main() {
	// 1 billion seconds of Unix, three ways.
	fmt.Println(time.Unix(1e9, 0).UTC())     // 1e9 seconds
	fmt.Println(time.Unix(0, 1e18).UTC())    // 1e18 nanoseconds
	fmt.Println(time.Unix(2e9, -1e18).UTC()) // 2e9 seconds - 1e18 nanoseconds

	t := time.Date(2001, time.September, 9, 1, 46, 40, 0, time.UTC)
	fmt.Println(t.Unix())     // seconds since 1970
	fmt.Println(t.UnixNano()) // nanoseconds since 1970

}

输出:

2001-09-09 01:46:40 +0000 UTC
2001-09-09 01:46:40 +0000 UTC
2001-09-09 01:46:40 +0000 UTC
1000000000
1000000000000000000

相关用法


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