在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Time.Month()函数用于查找 t 提供的一年中的月份。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。
句法:
func (t Time) Month() Month
这里,“t”是规定的时间。
返回值:它返回“t”提供的一年中的月份。
示例 1:
// Golang program to illustrate the usage of
// Time.Month() 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, 51, 04, 0, time.UTC)
// Calling Month method
month := t.Month()
// Prints month as specified
fmt.Printf("The stated month of the"+
" year specified is: %v\n", month)
}
输出:
The stated month of the year specified is: June
示例 2:
// Golang program to illustrate the usage of
// Time.Month() 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, 23, 5,
11, 51, 04, 0, time.UTC)
// Calling Month method
month := t.Month()
// Prints month as specified
fmt.Printf("The stated month of the "+
"year specified is: %v\n", month)
}
输出:
The stated month of the year specified is: November
这里,上面代码中用整数表示的月份超出了通常的范围,但在转换时被标准化了。