GO语言"time"包中"Time.Date"类型的用法及代码示例。
用法:
func(t Time) Date()(year int, month Month, day int)
Date 返回 t 出现的年、月和日。
例子:
package main
import (
"fmt"
"time"
)
func main() {
d := time.Date(2000, 2, 1, 12, 30, 0, 0, time.UTC)
year, month, day := d.Date()
fmt.Printf("year = %v\n", year)
fmt.Printf("month = %v\n", month)
fmt.Printf("day = %v\n", day)
}
输出:
year = 2000 month = February day = 1
相关用法
- GO Time.Day用法及代码示例
- GO Time.Sub用法及代码示例
- GO Time.Equal用法及代码示例
- GO Time.After用法及代码示例
- GO Time.Format用法及代码示例
- GO Time.AppendFormat用法及代码示例
- GO Time.AddDate用法及代码示例
- GO Time.Truncate用法及代码示例
- GO Time.Round用法及代码示例
- GO Time.Add用法及代码示例
- GO Time.GoString用法及代码示例
- GO Time.String用法及代码示例
- GO Time.Unix用法及代码示例
- GO Time.Before用法及代码示例
- GO Title用法及代码示例
- GO Tick用法及代码示例
- GO TrailingZeros8用法及代码示例
- GO Tx.ExecContext用法及代码示例
- GO Template用法及代码示例
- GO ToTitle用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Time.Date。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。