Go语言中DateTime的用法介绍

作者:奋斗的大橙子 时间:2024-04-27 15:31:55 

一、基本使用

①从属于time这个包

②一般使用都是使用

time.Time 这个类型表示时间 ,time包中还有一些常量,源码如下

// Common durations. There is no definition for units of Day or larger
// to avoid confusion across daylight savings time zone transitions.
//
// To count the number of units in a Duration, divide:
//  second := time.Second
//  fmt.Print(int64(second/time.Millisecond)) // prints 1000
//
// To convert an integer number of units to a Duration, multiply:
//  seconds := 10
//  fmt.Print(time.Duration(seconds)*time.Second) // prints 10s
//<br data-filtered="filtered">
const (
   Nanosecond  Duration = 1
   Microsecond          = 1000 * Nanosecond
   Millisecond          = 1000 * Microsecond
   Second               = 1000 * Millisecond
   Minute               = 60 * Second
   Hour                 = 60 * Minute
)

③ time.Now() 获取当前的时间,返回的是Time类型

Time类型中的

  • Year() 获取当前的年份

  • Month() 获取当前的月份

  • Day() 获取当前的日期

  • Hour() 获取当前小时

  • Minute() 获取当前分钟

  • Second() 获取当前秒

④常用 Unix() 方法获取时间戳信息

⑤通过AddDate()方法增加指定日期,Add方法增加指定时间

举个例子:

  • ①打印时间基础信息

func DateTimeBasic() time.Time{
   now:=time.Now()

fmt.Printf("%v\n",now)

year:=now.Year()
   month:=now.Month()
   day:=now.Day()
   hour:=now.Hour()
   minute:=now.Minute()
   send:=now.Second()

fmt.Printf("%02d/%02d/%02d %02d:%02d:%02d\n",year,month,day,hour,minute,send)

return now
}
  • ② 时间和时间戳直接的转换 第一个函数输入时间返回时间戳,第二个函数输入时间戳返回时间

func GetDateTimeStamp(datetime time.Time) int64{
   now:=datetime.Unix()
   fmt.Printf("TimeStamp: %v\n",now)
   return now
}

func GetDateTime(timeStamp int64){
   now:=time.Unix(timeStamp,0)
   fmt.Printf("DateTime: %v\n",now)
}
  • ③增加时间

func AddDay(src time.Time) time.Time{
   //添加一天两小时
   src = src.AddDate(0,0,1).Add(time.Hour * 2)
   return src
}
  • ④测试一下

package main

import "DateTimeDemo"

func main(){

dateTime:=DateTimeDemo.DateTimeBasic()
   calcDateTime := DateTimeDemo.AddDay(dateTime)
   timeStamp:=DateTimeDemo.GetDateTimeStamp(calcDateTime)
   DateTimeDemo.GetDateTime(timeStamp)

}
  • ⑤输出

2019-02-26 16:51:59.7509972 +0800 CST m=+0.010553801
2019/02/26 16:51:59
TimeStamp: 1551264719
DateTime: 2019-02-27 18:51:59 +0800 CST

二、简单定时器

利用time中Tick()方法

func SimpleTicker(){
  //间隔两秒,会像Channel中写入一个数据
  ticker := time.Tick(time.Second * 2)

for i := range ticker{
     fmt.Printf("%v\n",i)
     simpleTask()
  }
}

func simpleTask(){
  fmt.Println("Task Start")
}

执行结果:

2019-02-26 16:54:43.7828451 +0800 CST m=+2.077803401
Task Start
2019-02-26 16:54:45.7831559 +0800 CST m=+4.078114201
Task Start
2019-02-26 16:54:47.7831744 +0800 CST m=+6.078132701
Task Start
2019-02-26 16:54:49.7833155 +0800 CST m=+8.078273801
Task Start
2019-02-26 16:54:51.782682 +0800 CST m=+10.077640301
Task Start

来源:https://www.cnblogs.com/dcz2015/p/10438479.html

标签:Go,Golang,DateTime
0
投稿

猜你喜欢

  • python类和继承用法实例

    2021-07-24 17:31:30
  • 微信公众平台开发——群发信息

    2023-05-19 16:18:48
  • 深入了解Python iter() 方法的用法

    2023-11-05 02:12:37
  • 如何用python爬取微博热搜数据并保存

    2021-10-21 14:13:38
  • 进一步了解Python中的XML 工具

    2022-06-25 21:49:17
  • 带有定位当前位置的百度地图前端web api实例代码

    2024-05-08 10:11:56
  • Python学习笔记之列表推导式实例分析

    2021-04-30 15:00:38
  • golang 结构体初始化时赋值格式介绍

    2024-04-26 17:26:11
  • Python实现画图软件功能方法详解

    2023-08-29 06:35:49
  • Python进阶学习修改闭包内使用的外部变量

    2023-04-09 01:23:04
  • Golang中的参数传递示例详解

    2024-05-08 10:51:33
  • eWebEditor 上传文件提示格式不正确的解决方法

    2022-10-08 03:21:51
  • Python一行代码实现生成和读取二维码

    2023-04-30 15:31:18
  • Python3实现并发检验代理池地址的方法

    2023-10-14 01:03:58
  • Python离线安装openpyxl模块的步骤

    2021-08-10 16:04:04
  • JDBC如何获取数据库连接

    2024-01-23 05:53:50
  • pytest多重断言的实现

    2021-10-12 03:30:25
  • python类中的self和变量用法及说明

    2022-05-27 10:33:12
  • 通过代码实例了解Python3编程技巧

    2023-07-13 17:48:46
  • ASP开发网页牢记注意事项

    2013-06-28 16:20:30
  • asp之家 网络编程 m.aspxhome.com