<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在日常開發中,我們避免不了時間的使用,我們可能需要獲取當前時間,然後格式化儲存,也可能需要在時間型別與字串型別之間相互轉換等。本文將會對 Go
time
包裡面的常用函數和方法進行介紹。
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
。
根據 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包的時間常用操作的文章就介紹到這了,更多相關Go time包常用操作內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45