当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang time.Time.AddDate()用法及代码示例


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的Time.AddDate()函数用于检查时间,等效于将给定的“t”添加指定的年数,月数和天数。例如,如果该方法的参数为(-2,4,5),且指定的t为2018年2月3日,则输出将为2016年6月8日。如此处的Date方法,如果月份,天的范围也是如此或年份超出正常范围,则其会自动转换为正常范围。此外,此函数在时间包下定义。在这里,您需要导入“time”软件包才能使用这些函数。

用法:

func (t Time) AddDate(years int, months int, days int) Time

在这里,“t”是规定的时间。

返回值:它返回将陈述的t加到陈述的年数,月数和天数中的结果。

范例1:



// Golang program to illustrate the usage of 
// Time.AddDate() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Declaring Time in UTC 
    Time:= time.Date(2018, 6, 4, 0, 0, 0, 0, time.UTC) 
  
    // Calling AddDate method with all 
    // its parameters 
    t1:= Time.AddDate(1, 2, 5) 
    t2:= Time.AddDate(5, -2, 9) 
    t3:= Time.AddDate(0, 3, -3) 
    t4:= Time.AddDate(1, 0, 0) 
  
    // Prints output 
    fmt.Printf("%v\n", Time) 
    fmt.Printf("%v\n", t1) 
    fmt.Printf("%v\n", t2) 
    fmt.Printf("%v\n", t3) 
    fmt.Printf("%v\n", t4) 
}

输出:

2018-06-04 00:00:00 +0000 UTC
2019-08-09 00:00:00 +0000 UTC
2023-04-13 00:00:00 +0000 UTC
2018-09-01 00:00:00 +0000 UTC
2019-06-04 00:00:00 +0000 UTC

此处,返回的输出采用上述UTC格式。

范例2:

// Golang program to illustrate the usage of 
// Time.AddDate() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Declaring Time in UTC 
    Time:= time.Date(2020, 15, 34, 0, 0, 0, 0, time.UTC) 
  
    // Calling AddDate method with all 
    // its parameters 
    t1:= Time.AddDate(3, 13, 35) 
    t2:= Time.AddDate(2, -24, 29) 
    t3:= Time.AddDate(4, 32, -31) 
    t4:= Time.AddDate(5, 10, -11) 
  
    // Prints output 
    fmt.Printf("%v\n", Time) 
    fmt.Printf("%v\n", t1) 
    fmt.Printf("%v\n", t2) 
    fmt.Printf("%v\n", t3) 
    fmt.Printf("%v\n", t4) 
}

输出:

2021-04-03 00:00:00 +0000 UTC
2025-06-07 00:00:00 +0000 UTC
2021-05-02 00:00:00 +0000 UTC
2027-11-02 00:00:00 +0000 UTC
2027-01-23 00:00:00 +0000 UTC

此处,使用的范围超出了通常范围,但在转换时将其标准化。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.Time.AddDate() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。