📅  最后修改于: 2023-12-03 14:41:34.135000             🧑  作者: Mango
在 Golang 中,time.Time.Equal() 函数用于比较两个时间对象是否相等。
func (t Time) Equal(u Time) bool
参数:
返回值:
package main
import (
"fmt"
"time"
)
func main() {
// 创建两个时间对象
t1 := time.Date(2020, 7, 1, 0, 0, 0, 0, time.UTC)
t2 := time.Date(2020, 7, 1, 0, 0, 0, 0, time.UTC)
// 比较时间是否相等
if t1.Equal(t2) {
fmt.Println("t1 and t2 are equal.")
} else {
fmt.Println("t1 and t2 are not equal.")
}
}
输出结果为:
t1 and t2 are equal.