Golang 中的 time.Time.Beever()函数,示例为

Original: https://www.geeksforgeeks.org/time-time-before-function-in-golang-with-examples/

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

语法:

func (t Time) Before(u Time) bool

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

返回值:如果“t”在“u”之前,则返回 TRUE,否则返回 FALSE。

示例 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)
}

发帖主题:Re:Колибри0.7.0

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)
}

发帖主题:Re:Колибри0.7.0

false