1 Star 0 Fork 1

cloudrepos/GO项目学习

forked from goflyfox/GO项目学习 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Epoch.go 293 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangbiao 提交于 2017-11-11 15:21 . project init
package main
import "fmt"
import "time"
func main() {
now := time.Now()
secs := now.Unix()
nanos := now.UnixNano()
fmt.Println(now)
millis := nanos / 1000000
fmt.Println(secs)
fmt.Println(millis)
fmt.Println(nanos)
fmt.Println(time.Unix(secs, 0))
fmt.Println(time.Unix(0, nanos))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cloudrepos/gostudy.git
git@gitee.com:cloudrepos/gostudy.git
cloudrepos
gostudy
GO项目学习
master

搜索帮助