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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用兩個不同位置對象的相同時間的時間比較失???

使用兩個不同位置對象的相同時間的時間比較失???

Go
千萬里不及你 2022-12-19 20:04:25
我希望time.Now().In(location)對象在同一時刻比較為相同,即使location對象不同,只要location對象是使用相同的name字符串創(chuàng)建的。為什么這種期望不成立?package mainimport (    "fmt"    "time"    "log")func main() {    const USPacificTimeZone = "US/Pacific"    location, err := time.LoadLocation(USPacificTimeZone)    if err != nil {        log.Fatal(fmt.Sprintf("Couldn't load timezone: %v", err))    }    // Exactly the same as location above, just a new instance    location2, err := time.LoadLocation(USPacificTimeZone)    if err != nil {        log.Fatal(fmt.Sprintf("Couldn't load timezone: %v", err))    }    now := time.Now()    fmt.Printf("Times using same location object: %v\n",        now.In(location) == now.In(location))    // prints:  Times using same location object: true    // Using (the identical) location2 causes the times to be different???    fmt.Printf("Times using different location objects: %v\n",        now.In(location) == now.In(location2))    // prints:  Times using different location objects: false}
查看完整描述

1 回答

?
阿晨1998

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個贊

使用Equal方法比較時間點(diǎn):

fmt.Printf("Times using different location objects: %v\n",
    now.In(location).Equal(now.In(location2)))   // prints true

Time 類型文檔描述了將 Time 值與 進(jìn)行比較的陷阱 ==

請注意,Go == 運(yùn)算符不僅比較時間瞬間,還會比較位置和單調(diào)時鐘讀數(shù)。因此,如果沒有首先保證為所有值設(shè)置了相同的位置,時間值不應(yīng)用作地圖或數(shù)據(jù)庫鍵,這可以通過使用 UTC 或本地方法來實(shí)現(xiàn),并且單調(diào)時鐘讀數(shù)已被剝離設(shè)置 t = t.Round(0)。一般來說,更喜歡 t.Equal(u) 而不是 t == u,因?yàn)?t.Equal 使用可用的最準(zhǔn)確的比較,并正確處理只有一個參數(shù)具有單調(diào)時鐘讀數(shù)的情況。


查看完整回答
反對 回復(fù) 2022-12-19
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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