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

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

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.Minute()函数用于查找“t”提供的指定小时内的分钟偏移量,范围为 [0, 59]。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) Minute() int

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

返回值:它返回“t”提供的指定小时内的分钟偏移量。

示例 1:

// Golang program to illustrate the usage of
// Time.Minute() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t in UTC
    t := time.Date(2019, 6, 5, 11,
             35, 04, 0, time.UTC)
  
    // Calling Minute method
    min := t.Minute()
  
    // Prints minute as specified
    fmt.Printf("The stated minute within"+
     " the hour specified is: %v\n", min)
}

输出:

The stated minute within the hour specified is: 35

示例 2:

// Golang program to illustrate the usage of
// Time.Minute() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t in UTC
    t := time.Date(2019, 6, 5,
       11, 91, 04, 0, time.UTC)
  
    // Calling Minute method
    min := t.Minute()
  
    // Prints minute as specified
    fmt.Printf("The stated minute within"+
       " the hour specified is: %v\n", min)
}

输出:

The stated minute within the hour specified is: 31

此处,所述分钟超出通常范围,但在转换时已标准化。