package main
import (
"fmt"
"time"
)
func main() {// 獲取當前時間
now := time.Now()
fmt.Println(now)
fmt.Println(now.Year())
fmt.Println(now.Month())
fmt.Println(now.Day())
fmt.Println(now.Hour())
fmt.Println(now.Minute())
fmt.Println(now.Second())
// 通過指定格式將時間格式轉換為指定的時間字符串類型
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)
fmt.Println(format2)
fmt.Println(format3)
fmt.Println(format4)
fmt.Println(format5)
// 獲取秒
fmt.Println(now.Unix())
// 獲取毫秒
fmt.Println(now.UnixMilli())
// 獲取微妙
fmt.Println(now.UnixMicro())
// 獲取納秒
fmt.Println(now.UnixNano())
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)
fmt.Println(time2)
fmt.Println(time3)
// 進行時間的添加操作, 負數為減少,整數為添加, 可以是小時 天 秒 分鐘 年
NewTime := now.Add(time.Hour * 1)
fmt.Println(NewTime)
// 計算兩個時間的差
SubTime := NewTime.Sub(now)
fmt.Println(SubTime)
// 計算當前時間與某個時間的差
fmt.Println(time.Since(NewTime))
// 判斷當前時間是否在某個時間之前
date := time.Date(2022, 12, 05, 12, 30, 45, 0, time.UTC)
fmt.Println(now.Before(date))
// 判斷當前時間是否在某個時間之后
fmt.Println(now.After(date))
}
你是否還在尋找穩定的海外服務器提供商?創新互聯www.cdcxhl.cn海外機房具備T級流量清洗系統配攻擊溯源,準確流量調度確保服務器高可用性,企業級服務器適合批量采購,新人活動首月15元起,快前往官網查看詳情吧
創新互聯公司主營宜都網站建設的網絡公司,主營網站建設方案,重慶APP軟件開發,宜都h5微信小程序開發搭建,宜都網站營銷推廣歡迎宜都等地區企業咨詢
網頁標題:golang中關于time模塊的常用方法-創新互聯
分享網址:http://vcdvsql.cn/article44/phjee.html
成都網站建設公司_創新互聯,為您提供移動網站建設、電子商務、用戶體驗、企業建站、外貿建站、品牌網站制作
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯