Go/golang time.Now() UnixNano()转换为毫秒?

前端之家收集整理的这篇文章主要介绍了Go/golang time.Now() UnixNano()转换为毫秒?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在几毫秒内得到Unix的时间?

我有以下功能

func makeTimestamp() int64 {
    return time.Now().UnixNano() % 1e6 / 1e3
}

我需要更少的精度,只需要毫秒。

只要划分:
func makeTimestamp() int64 {
    return time.Now().UnixNano() / int64(time.Millisecond)
}

这是一个可以编译并运行以查看输出的示例

package main

import (
    "time"
    "fmt"
)

func main() {
    a := makeTimestamp()

    fmt.Printf("%d \n",a)
}

func makeTimestamp() int64 {
    return time.Now().UnixNano() / int64(time.Millisecond)
}
原文链接:https://www.f2er.com/go/187371.html

猜你在找的Go相关文章