📜  如何比较 Golang 中的时间?

📅  最后修改于: 2021-10-25 02:52:25             🧑  作者: Mango

的帮助下Before()After()Equal()函数,我们可以比较的时间以及日期,但我们也将使用time.Now()time.Now().Add()函数用于比较。

使用的函数:这些函数将时间作为进行比较。

  • Before(temp) – 此函数用于检查给定时间是否在临时时间变量之前,如果时间变量在临时时间变量之前,则返回 true,否则返回 false。
  • After(temp) – 此函数用于检查给定时间是否在临时时间变量之后,如果时间变量在临时时间变量之后则返回 true,否则返回 false。
  • Equal(temp) – 此函数用于检查给定时间是否等于临时时间变量,如果时间变量等于临时时间变量则返回 true,否则返回 false。

示例#1:在这个示例中,我们可以看到通过使用Before()After()函数,我们可以使用这些函数比较日期。

// Golang program to compare times
package main
  
import "fmt"
  
// importing time module
import "time"
  
// Main function
func main() {
  
    today := time.Now()
    tomorrow := today.Add(24 * time.Hour)
  
    // Using time.Before() method
    g1 := today.Before(tomorrow)
    fmt.Println("today before tomorrow:", g1)
  
    // Using time.After() method
    g2 := tomorrow.After(today)
    fmt.Println("tomorrow after today:", g2)
  
}

输出 :

today before tomorrow: true
tomorrow after today: true

示例#2:

// Golang program to compare times
package main
  
import "fmt"
  
// importing time module
import "time"
  
// Main function
func main() {
  
    today := time.Now()
    tomorrow := today.Add(24 * time.Hour)
    sameday := tomorrow.Add(-24 * time.Hour)
  
    if today != tomorrow {
        fmt.Println("today is not tomorrow")
    }
  
    if sameday == today {
        fmt.Println("sameday is today")
    }
  
    // using Equal function
    if today.Equal(sameday) {
        fmt.Println("today is sameday")
    }
  
}

输出 :

today is not tomorrow
sameday is today
today is sameday