time _ golang

jackkiexu · · 3269 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Go's offers extensive support for times and durations; here are some example

package main

import (
    "fmt"
    "time"
)

func main() {

    p := fmt.Println

    now := time.Now()
    p(now)

    then := time.Date(
        2009, 11, 17, 20, 34, 58, 651387237, time.UTC)
    p(then)

    p(then.Year())
    p(then.Month())
    p(then.Day())
    p(then.Hour())
    p(then.Minute())
    p(then.Second())
    p(then.Nanosecond())
    p(then.Location())

    p(then.Before(now))
    p(then.After(now))
    p(then.Equal(now))

    diff := now.Sub(then)
    p(diff)

    p(diff.Hours())
    p(diff.Minutes())
    p(diff.Seconds())
    p(diff.Nanoseconds())

    p(then.Add(diff))
    p(then.Add(-diff))
}
2015-03-25 14:12:14.302895576 +0800 CST
2009-11-17 20:34:58.651387237 +0000 UTC
2009
November
17
20
34
58
651387237
UTC
true
false
false
46881h37m15.651508339s
46881.62101430787
2.8128972608584724e+06
1.6877383565150833e+08
168773835651508339
2015-03-25 06:12:14.302895576 +0000 UTC
2004-07-13 10:57:42.999878898 +0000 UTC

 


有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:jackkiexu

查看原文:time _ golang

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

3269 次点击  ∙  1 赞  
加入收藏 微博
下一篇:json _ golang
0 回复
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传