douliu1092 2014-04-20 16:05
浏览 29
已采纳

创建持续时间或将来日期的惯用方式

What would be the idiomatic way of getting a duration between two dates or basically getting a future date based on the current. Right now I'm using the below code to achieve that.

yearSpan := time.Date(time.Now().Year()-1, time.Now().Month(), 
time.Now().Day(), time.Now().Hour(), time.Now().Minute(), time.Now().Second(), 
time.Now().Nanosecond(), time.UTC)

yearDuration := time.Now().Sub(yearSpan)

header.Add("Expires", time.Now().Add(futureDate).String())

I've pretty much looked everywhere in books and sites but I couldn't find any idiomatic way creating a duration. Any thoughts on how to refactor the above code in a better way?

Thanks

  • 写回答

1条回答 默认 最新

  • duanbeng8872 2014-04-20 16:41
    关注

    time.Duration is defined as type Duration int64, so basicly you just do basic math to get the duration you want.

    For example (Play with it) :

    package main
    
    import (
        "fmt"
        "time"
    )
    
    const avgYear = time.Hour * 24 * 365
    
    func main() {
        fmt.Println("Hello, playground")
        fmt.Println("Now", time.Now().String())
        fmt.Println("Last Year", time.Now().Add(-avgYear).String())
        fmt.Println("Next Year", time.Now().Add(avgYear).String())
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法