GO語言"time"包中"FixedZone"函數的用法及代碼示例。
用法:
func FixedZone(name string, offset int) *Location
FixedZone 返回一個始終使用給定區域名稱和偏移量(UTC 以東秒數)的位置。
例子:
package main
import (
"fmt"
"time"
)
func main() {
loc := time.FixedZone("UTC-8", -8*60*60)
t := time.Date(2009, time.November, 10, 23, 0, 0, 0, loc)
fmt.Println("The time is:", t.Format(time.RFC822))
}
輸出:
The time is: 10 Nov 09 23:00 UTC-8
相關用法
- GO FileServer用法及代碼示例
- GO FieldsFunc用法及代碼示例
- GO FileMode用法及代碼示例
- GO Fields用法及代碼示例
- GO Fscanln用法及代碼示例
- GO Float.SetString用法及代碼示例
- GO Fprintln用法及代碼示例
- GO FormatMediaType用法及代碼示例
- GO Float64s用法及代碼示例
- GO Fprintf用法及代碼示例
- GO Fprint用法及代碼示例
- GO Floor用法及代碼示例
- GO FormatUint用法及代碼示例
- GO FormatBool用法及代碼示例
- GO Float64sAreSorted用法及代碼示例
- GO Float.Scan用法及代碼示例
- GO FormatFloat用法及代碼示例
- GO FullRune用法及代碼示例
- GO FullRuneInString用法及代碼示例
- GO Float.Add用法及代碼示例
注:本文由純淨天空篩選整理自golang.google.cn大神的英文原創作品 FixedZone。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。