第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何獲取第二天的具體時(shí)間

如何獲取第二天的具體時(shí)間

Go
桃花長(zhǎng)相依 2023-06-26 17:02:03
time.Time我想為第二天(明天)的確切時(shí)間點(diǎn)創(chuàng)建一個(gè)?,F(xiàn)在我想設(shè)置小時(shí)和分鐘。這是我目前使用的代碼:now := time.Now() tomorrow := time.Date(now.Year(), now.Month(), now.Day(), 15, 0, 0, 0, time.UTC).AddDate(0,0,1)這將為今天創(chuàng)建一個(gè)Date具有我正在尋找的確切時(shí)間(小時(shí)和分鐘)的日期,然后添加一天Date。這很好用。例子:想象一下time.Now()是2009-11-10 23:00:00 +0000 UTC。以下代碼的結(jié)果將是:2009-11-10 15:00:00 +0000 UTCtomorrow := time.Date(now.Year(), now.Month(), now.Day(), 15, 0, 0, 0, time.UTC)到目前為止,我添加了一天使用AddDate(0, 0, 1). 結(jié)果就是第二天所需的時(shí)間:2009-11-11 15:00:00 +0000 UTC。請(qǐng)參閱: https: //play.golang.org/p/OKR9V1HN50x問(wèn)題:有沒(méi)有更短的方法來(lái)編寫這段代碼?
查看完整描述

1 回答

?
楊__羊羊

TA貢獻(xiàn)1943條經(jīng)驗(yàn) 獲得超7個(gè)贊

打包時(shí)間

import?"time"

月、日、小時(shí)、分鐘、秒和納秒值可能超出其通常范圍,并將在轉(zhuǎn)換過(guò)程中標(biāo)準(zhǔn)化。例如,10 月 32 日轉(zhuǎn)換為 11 月 1 日。


這樣效率更高。它最大限度地減少了對(duì)包time函數(shù)和方法的調(diào)用。

package main


import (

? ? "fmt"

? ? "time"

)


func main() {

? ? now := time.Now()

? ? fmt.Println(now.Round(0))

? ? yyyy, mm, dd := now.Date()

? ? tomorrow := time.Date(yyyy, mm, dd+1, 15, 0, 0, 0, now.Location())

? ? fmt.Println(tomorrow)

}

輸出:


2019-06-21 16:23:06.525478162 -0400 EDT

2019-06-22 15:00:00 -0400 EDT

一些基準(zhǔn):


BenchmarkNow-8? ? ? ? ? ? ? ? ? 31197811? ? ? ? ? ? 36.6 ns/op

BenchmarkTomorrowPeterSO-8? ? ? 29852671? ? ? ? ? ? 38.4 ns/op

BenchmarkTomorrowJens-8? ? ? ? ? 9523422? ? ? ? ? ?124 ns/op

bench_test.go:


package main


import (

? ? "testing"

? ? "time"

)


func BenchmarkNow(b *testing.B) {

? ? for N := 0; N < b.N; N++ {

? ? ? ? now := time.Now()

? ? ? ? _ = now

? ? }

}


var now = time.Now()


func BenchmarkTomorrowPeterSO(b *testing.B) {

? ? for N := 0; N < b.N; N++ {

? ? ? ? // now := time.Now()

? ? ? ? yyyy, mm, dd := now.Date()

? ? ? ? tomorrow := time.Date(yyyy, mm, dd+1, 15, 0, 0, 0, now.Location())

? ? ? ? _ = tomorrow

? ? }

}


func BenchmarkTomorrowJens(b *testing.B) {

? ? for N := 0; N < b.N; N++ {

? ? ? ? // now := time.Now()

? ? ? ? tomorrow := time.Date(now.Year(), now.Month(), now.Day(), 15, 0, 0, 0, now.Location()).AddDate(0, 0, 1)

? ? ? ? _ = tomorrow

? ? }

}


查看完整回答
反對(duì) 回復(fù) 2023-06-26
  • 1 回答
  • 0 關(guān)注
  • 147 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)