获取下一个小时的时间戳

huangapple go评论86阅读模式
英文:

Get timestamp for the next hour

问题

你可以使用Go语言中的time包来获取下一个小时的时间戳。以下是一个示例代码:

package main

import (
	"fmt"
	"time"
)

func main() {
	now := time.Now()
	nextHour := now.Add(time.Hour)
	timestamp := nextHour.Unix()

	fmt.Println(timestamp)
}

这段代码中,我们首先使用time.Now()函数获取当前时间,然后使用Add()方法将一个小时的时间间隔加到当前时间上,得到下一个小时的时间。最后,我们使用Unix()方法将时间转换为时间戳,并打印输出。

希望对你有帮助!

英文:

How can I get the timestamp of the next hour?

Example: Something expires in 1 hours, so it would be time.Now() plus one hour

How can I do this?

Thanks!

答案1

得分: 9

time.Now().Add(time.Hour)的中文翻译是time.Now().Add(time.Hour)

英文:

time.Now().Add(time.Hour)

playground

huangapple
  • 本文由 发表于 2015年12月14日 13:06:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/34260121.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定