función time.Time.Month() en Golang con ejemplos

En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Time.Month() en el lenguaje Go se usa para encontrar el mes del año proporcionado por t. Además, esta función se define en el paquete de tiempo. Aquí, debe importar el paquete «tiempo» para usar estas funciones.

Sintaxis:

func (t Time) Month() Month

Aquí, “t” es el tiempo indicado.

Valor devuelto: Devuelve el mes del año según lo dispuesto por “t”.

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

Producción:

The stated month of the year specified is: June

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

Producción:

The stated month of the year specified is: November

Aquí, el mes indicado en el código anterior en un número entero está fuera del rango habitual, pero se normaliza durante la conversión.

Publicación traducida automáticamente

Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *