中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Go語言時間處理如何格式化輸出

小樊
82
2024-11-07 13:21:45
欄目: 編程語言

在Go語言中,可以使用time包來處理時間和日期。要格式化輸出時間,首先需要創建一個time.Time類型的變量,然后使用Format方法將其格式化為字符串。以下是一些常用的時間格式化模板:

const (
    ANSIC       = "Mon Jan _2 15:04:05 2006"
    UnixDate    = "Mon Jan _2 15:04:05 MST 2006"
    RubyDate    = "Mon Jan 02 15:04:05 -0700 2006"
    RFC822      = "02 Jan 06 15:04 MST"
    RFC822Z     = "02 Jan 06 15:04 -0700" // RFC822 with numeric zone
    RFC850      = "Monday, 02-Jan-06 15:04:05 MST"
    RFC1123     = "Mon, 02 Jan 2006 15:04:05 MST"
    RFC1123Z    = "Mon, 02 Jan 2006 15:04:05 -0700" // RFC1123 with numeric zone
    RFC3339     = "2006-01-02T15:04:05Z07:00"
    RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
    Kitchen     = "3:04PM"
    // Handy time stamps.
    Stamp      = "Jan _2 15:04:05"
    StampMilli = "Jan _2 15:04:05.000"
    StampMicro = "Jan _2 15:04:05.000000"
    StampNano  = "Jan _2 15:04:05.000000000"
)

下面是一個使用time.Now()函數獲取當前時間并使用不同格式化模板進行輸出的示例:

package main

import (
	"fmt"
	"time"
)

func main() {
	now := time.Now()

	// 使用ANSIC格式化輸出
	fmt.Println("ANSIC:", now.Format(ANSIC))

	// 使用UnixDate格式化輸出
	fmt.Println("UnixDate:", now.Format(UnixDate))

	// 使用RubyDate格式化輸出
	fmt.Println("RubyDate:", now.Format(RubyDate))

	// 使用RFC822格式化輸出
	fmt.Println("RFC822:", now.Format(RFC822))

	// 使用RFC1123格式化輸出
	fmt.Println("RFC1123:", now.Format(RFC1123))

	// 使用RFC3339格式化輸出
	fmt.Println("RFC3339:", now.Format(RFC3339))

	// 使用自定義格式化字符串
	customFormat := "2006-01-02 15:04:05"
	fmt.Println("Custom:", now.Format(customFormat))
}

運行上述代碼,你將看到類似以下的輸出:

ANSIC: Mon Jan 17 14:30:16 2022
UnixDate: Mon Jan 17 14:30:16 MST 2022
RubyDate: Mon Jan 17 14:30:16 -0700 2022
RFC822: Mon, 17 Jan 2022 14:30:16 MST
RFC1123: Mon, 17 Jan 2022 14:30:16 MST
RFC3339: 2022-01-17T14:30:16Z07:00
Custom: 2022-01-17 14:30:16

你可以根據需要選擇合適的格式化模板來輸出時間。

0
文昌市| 寻乌县| 山丹县| 桐城市| 监利县| 孙吴县| 凤山市| 乡城县| 吉水县| 车险| 利津县| 呼伦贝尔市| 临夏县| 繁昌县| 雷山县| 鄂温| 昌图县| 五莲县| 荃湾区| 册亨县| 苏州市| 麻城市| 桃江县| 乌鲁木齐市| 葫芦岛市| 大名县| 治多县| 兴仁县| 民丰县| 车险| 浏阳市| 黄浦区| 浑源县| 仪陇县| 长泰县| 集贤县| 徐水县| 蒙城县| 镇安县| 右玉县| 东莞市|