概念簡介
Go語言對時間和時間段提供了大量的支持;這裏是一些例子。
例程代碼
package main
import "fmt"
import "time"
func main() {
p := fmt.Println
// 得到當前時間。
now := time.Now()
p(now)
// 通過提供年月日等信息,你可以構建一個 `time`。時間總
// 是關聯著位置信息,例如時區。
then := time.Date(
2009, 11, 17, 20, 34, 58, 651387237, time.UTC)
p(then)
// 你可以提取出時間的各個組成部分。
p(then.Year())
p(then.Month())
p(then.Day())
p(then.Hour())
p(then.Minute())
p(then.Second())
p(then.Nanosecond())
p(then.Location())
// 輸出是星期一到日的 `Weekday` 也是支持的。
p(then.Weekday())
// 這些方法來比較兩個時間,分別測試一下是否是之前,
// 之後或者是同一時刻,精確到秒。
p(then.Before(now))
p(then.After(now))
p(then.Equal(now))
// 方法 `Sub` 返回一個 `Duration` 來表示兩個時間點的間
// 隔時間。
diff := now.Sub(then)
p(diff)
// 我們計算出不同單位下的時間長度值。
p(diff.Hours())
p(diff.Minutes())
p(diff.Seconds())
p(diff.Nanoseconds())
// 你可以使用 `Add` 將時間後移一個時間間隔,或者使
// 用一個 `-` 來將時間前移一個時間間隔。
p(then.Add(diff))
p(then.Add(-diff))
}
執行&輸出
$ go run time.go
2012-10-31 15:50:13.793654 +0000 UTC
2009-11-17 20:34:58.651387237 +0000 UTC
2009
November
17
20
34
58
651387237
UTC
Tuesday
true
false
false
25891h15m15.142266763s
25891.25420618521
1.5534752523711128e+06
9.320851514226677e+07
93208515142266763
2012-10-31 15:50:13.793654 +0000 UTC
2006-12-05 01:19:43.509120474 +0000 UTC
# 下麵我們將看到時間到 Unix 時間的相關概念。
課程導航
學習上一篇:Go語言教程:Json 學習下一篇:Go語言教程:時間戳
相關資料
本例程github源代碼:https://github.com/xg-wang/gobyexample/tree/master/examples/time