中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Go語言time包的時間常用操作方法有哪些

發布時間:2022-12-05 09:19:55 來源:億速云 閱讀:168 作者:iii 欄目:開發技術

本篇內容主要講解“Go語言time包的時間常用操作方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Go語言time包的時間常用操作方法有哪些”吧!

Now():獲取當前本地的時間

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    fmt.Println(now) // 2022-12-03 21:06:16.1658077 +0800 CST m=+5.936223001
}

Now() 函數返回的是一個 time 包內置的一個結構體 Time

獲取具體時間單位的值(yeah、month、day ······)

根據 Now() 的返回的 Time 結構體,我們通過其方法可以獲取到具體的時間單位的值,例如 年、月、日等等。

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    fmt.Println("年:", now.Year())
    fmt.Println("月:", now.Month())
    fmt.Println("數字格式的月:", int(now.Month()))
    fmt.Println("日:", now.Day())
    fmt.Println("時:", now.Hour())
    fmt.Println("分:", now.Minute())
    fmt.Println("秒:", now.Second())
}

通過 Time 結構體的 Year()Month()Day()Hour()Minute()Second() 這些方法,可以獲取到當前時間的 年、月、日、時、分、秒的值。

時間格式化

通過 Time 結構體的 Format(layout string) 方法可以將時間轉換成指定格式并以 string 類型返回。

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    format1 := now.Format("2006-01-02 15:04:05")
    format2 := now.Format("2006/01/02 15:04:05")
    format3 := now.Format("2006-01-02")
    format4 := now.Format("2006/01/02")
    format5 := now.Format("15:04:05")

    fmt.Println(format1) // 2022-12-03 22:27:56
    fmt.Println(format2) // 2022/12/03 22:27:56
    fmt.Println(format3) // 2022-12-03
    fmt.Println(format4) // 2022/12/03
    fmt.Println(format5) // 22:27:56
}

其中 layout 格式參數,Go 強制我們使用 2006-01-02 15:04:05 這個固定的值,連接符如 - 可以改變,但是數字不能變,否則時間會對不上。

獲取秒、微秒、毫秒、納秒

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    // 獲取秒
    fmt.Println(now.Unix()) // 1670078476
    // 獲取毫秒
    fmt.Println(now.UnixMilli()) // 1670079987508082
    // 獲取微秒
    fmt.Println(now.UnixMicro()) // 1670079987508082
    // 獲取納秒
    fmt.Println(now.UnixNano()) // 1670079987508082500
}

通過 time 結構體的 Unix()UnixMilli()UnixMicro()UnixNano() 方法可以獲取對應是秒時間戳、毫秒時間戳、微秒時間戳和納秒時間戳。

通過指定年月日等參數獲取時間

import (
    "fmt"
    "time"
)

func main() {
    date := time.Date(2002, 12, 03, 12, 12, 12, 0, time.UTC)
    fmt.Println(date) // 2022-12-03 12:12:12 +0000 UTC
}

通過 Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time 函數,傳入指定的年月日等參數,獲取指定是時間變量。

時間戳與時間的轉換

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()

    time1 := time.Unix(now.Unix(), 0).Format("2006-01-02 15:04:05")
    time2 := time.UnixMilli(now.UnixMilli()).Format("2006-01-02 15:04:05")
    time3 := time.UnixMicro(now.UnixMicro()).Format("2006-01-02 15:04:05")
    fmt.Println(time1) // 2022-12-03 23:03:33
    fmt.Println(time2) // 2022-12-03 23:03:33
    fmt.Println(time3) // 2022-12-03 23:03:33
}

通過 Unix()UnixMilli()、和 UnixMicro() 方法可以將對應時間戳轉換成當前時間并格式化。

字符串轉時間格式

import (
   "fmt"
   "time"
)

func main() {
   t1, err := time.Parse("2006-01-02 15:04:05", "2022-12-03 13:00:00")
   if err != nil {
      fmt.Println("err: ", err)
      return
   }
   fmt.Println(t1) // 2022-12-03 13:00:00 +0000 UTC

   t2, err := time.Parse("2006-01-02", "2022-12-03")
   if err != nil {
      fmt.Println("err: ", err)
      return
   }
   fmt.Println(t2) // 2022-12-03 00:00:00 +0000 UTC

   t3, err := time.Parse("15:04:05", "13:00:00")
   if err != nil {
      fmt.Println("err: ", err)
      return
   }
   fmt.Println(t3) // 0000-01-01 13:00:00 +0000 UTC
}

通過 Parse(layout, value string) (Time, error) 函數將字符串轉成 time 時間。layout 格式必須與 value 的格式相對應,否則會返回 error

時間的添加和減少操作

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    newTime := now.Add(time.Hour * 1)
    fmt.Println(newTime.Format("2006-01-02 15:04:05"))
}
  • 通過 (t Time) Add(d Duration) Time 方法,可以對時間進行添加或減少操作,傳入的參數是正數表示添加,負數表示減少。添加單位有天、小時、分鐘等。

  • Duration 表示所添加的時間,time.Hour 表示小時單位,除此之外還有 time.Minute 分鐘單位、time.Second 秒單位等。

計算兩個時間的時間差

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    newTime := now.Add(time.Hour * 1)
    fmt.Println(newTime.Sub(now)) // 1h0m0s
}

通過 Sub(u Time) Duration 方法可以計算兩個時間的時間差。

計算當前時間與某個時間的時間差

import (
    "fmt"
    "time"
)

func main() {
    beforeTime := time.Now().Add(time.Hour * -1)
    fmt.Println(time.Since(beforeTime)) // 1h0m0s
}

通過 Add(d Duration) Time 方法將當前時間減少一小時,然后通過 Since(t Time) Duration 函數比較當前時間與其他時間的時間差。

判斷當前時間是否在某個時間之前

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    date := time.Date(2022, 12, 03, 12, 12, 12, 0, time.UTC)
    fmt.Println(now.Before(date)) // false
}

通過 Before(u Time) bool #方法,判斷當前的時間是否在傳入的時間之前,返回值為布爾值,true 為是,false 為否。

判斷當前時間是否在某個時間之后

import (
    "fmt"
    "time"
)

func main() {
    now := time.Now()
    date := time.Date(2022, 12, 03, 12, 12, 12, 0, time.UTC)
    fmt.Println(now.After(date)) // true
}

通過 After(u Time) bool 方法,判斷當前的時間是否在傳入的時間之后,返回值為布爾值,true 為是,false 為否。

到此,相信大家對“Go語言time包的時間常用操作方法有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新郑市| 宁阳县| 许昌县| 长兴县| 永定县| 灌阳县| 全椒县| 新蔡县| 泰安市| 尚志市| 南投县| 黄陵县| 滕州市| 武山县| 化德县| 胶南市| 贺兰县| 德惠市| 金门县| 义乌市| 康乐县| 钦州市| 泗水县| 农安县| 雷波县| 普定县| 平南县| 东辽县| 黑山县| 望都县| 固安县| 甘洛县| 石首市| 丰台区| 芒康县| 龙州县| 出国| 林州市| 高邮市| 镇安县| 高密市|