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

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

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.IsZero()函数用于检查指定的时间“t”是否意味着零时间瞬间,即 UTC 时间 1 月 1 日,1 年 00:00:00。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) IsZero() bool

这里,“t”是规定的时间。

返回值:如果规定的时间意味着零时间,则返回真,否则返回假。

示例 1:

// Golang program to illustrate the usage of
// Time.IsZero() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t parameter of IsZero method
    t := time.Date(0001, 1, 1, 00, 00, 00, 00, time.UTC)
  
    // Calling IsZero method
    IsZeroOrnot := t.IsZero()
  
    // Prints output
    fmt.Printf("%v\n", IsZeroOrnot)
}

输出:

true

示例 2:

// Golang program to illustrate the usage of
// Time.IsZero() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t parameter 
    // of IsZero method
    t := time.Date(0001, 2, 1, 00, 
             00, 00, 00, time.UTC)
  
    // Calling IsZero method
    IsZeroOrnot := t.IsZero()
  
    // Prints output
    fmt.Printf("%v\n", IsZeroOrnot)
}

输出:

false