📜  Golang 中的 time.Time.Before()函数示例

📅  最后修改于: 2021-10-24 13:17:03             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.Before()函数用于检查指定的时刻 t 是否在指定的 u 之前。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) Before(u Time) bool

这里,“t”是规定的时间,“u”是作为 Before() 方法中的参数出现的时间。

返回值:如果“t”出现在“u”之前,则返回真,否则返回假。

示例 1:

// Golang program to illustrate the usage of
// Time.Before() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t and u in UTC
    t := time.Date(2019, 0, 0, 0, 0, 0, 0, time.UTC)
    u := time.Date(2020, 0, 0, 0, 0, 0, 0, time.UTC)
  
    // Calling Before method
    res := t.Before(u)
  
    // Prints output
    fmt.Printf("%v", res)
}

输出:

true

示例 2:

// Golang program to illustrate the usage of
// Time.Before() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t and u in UTC
    t := time.Date(2030, 0, 0, 0, 0, 0, 0, time.UTC)
    u := time.Date(2025, 0, 0, 0, 0, 0, 0, time.UTC)
  
    // Calling Before method
    res := t.Before(u)
  
    // Prints output
    fmt.Printf("%v", res)
}

输出:

false