時(shí)間和日期是我們編程中經(jīng)常用到的,本文主要介紹了Go語言內(nèi)置的time包的基本用法。
在港北等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需開發(fā)網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷,外貿(mào)營銷網(wǎng)站建設(shè),港北網(wǎng)站建設(shè)費(fèi)用合理。
單行導(dǎo)入
import "time"
import "fmt"
多行導(dǎo)入
import (
"fmt"
"time"
)
time.Time類型表示時(shí)間。
func main(){
now := time.Now()
fmt.Printf("current time is :%v\n",now)
year := now.Year()
month := now.Month()
day := now.Day()
hour := now.Hour()
minute:= now.Minute()
second := now.Second()
fmt.Printf("%d-%02d-%02d %02d:%02d:%02d\n",year,month,day,hour,minute,second)
}
時(shí)間戳是自1970年1月1日(08:00:00GMT)至當(dāng)前時(shí)間的總毫秒數(shù)。它也被為Unix時(shí)間戳。
func timestampDemo() {
now := time.Now() //獲取當(dāng)前時(shí)間
timestamp1 := now.Unix() //時(shí)間戳
timestamp2 := now.UnixNano() //納秒時(shí)間戳
fmt.Printf("current timestamp1:%v\n", timestamp1)
fmt.Printf("current timestamp2:%v\n", timestamp2)
}
使用time.Unix()函數(shù)將時(shí)間戳轉(zhuǎn)為時(shí)間格式。
func timestampDemo2(timestamp int64) {
timeObj := time.Unix(timestamp, 0) //將時(shí)間戳轉(zhuǎn)為時(shí)間格式
fmt.Println(timeObj)
year := timeObj.Year() //年
month := timeObj.Month() //月
day := timeObj.Day() //日
hour := timeObj.Hour() //小時(shí)
minute := timeObj.Minute() //分鐘
second := timeObj.Second() //秒
fmt.Printf("%d-%02d-%02d %02d:%02d:%02d\n", year, month, day, hour, minute, second)
}
使用time.Tick(時(shí)間間隔),來設(shè)置定時(shí)器。
func tickDemo(){
ticker := time.Tick(time.Second)
for i:=range ticker{
fmt.Println(i)
}
}
Duration類型代表兩個(gè)時(shí)間點(diǎn)之間經(jīng)過的時(shí)間,以納秒為單位。可表示的最長時(shí)間段大約為290年。定義時(shí)間間隔常量如下:
const (
Nanosecond Duration =1
Microsecond =1000*Nanosecond
Millisecond =1000*Microsecond
Second =1000*Millisecond
Minute =60*Second
Hour =60*Minute
)
例如:time.Duration 表示1納秒,time.Second表示1秒。
我們在日常的編碼過程中可能會遇到要求時(shí)間+時(shí)間間隔的需求,Go語言的時(shí)間對象有提供Add方法如下:
func (t Time) Add(d Duration) Time
舉個(gè)例子,求一個(gè)小時(shí)之后的時(shí)間:
func main(){
now := time.Now()
later := now.Add(time.Hour)
fmt.Println(later)
}
求兩個(gè)時(shí)間之間的差值:
func (t Time) Sub(u time) Duration