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