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

En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Time.Year() en el lenguaje Go se usa para encontrar el año en el que ocurre la «t» especificada. 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) Year() int

Aquí, “t” es el tiempo establecido.

Valor de retorno: Devuelve el año en que ocurre la “t” especificada.

Ejemplo 1:

// Golang program to illustrate the usage of
// Time.Year() 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 Year method
    yr := t.Year()
  
    // Prints year as specified
    fmt.Printf("The stated year in the"+
          " 't' specified is: %v\n", yr)
}

Producción:

The stated year in the 't' specified is: 2019

Ejemplo 2:

// Golang program to illustrate the usage of
// Time.Year() 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, 13, 35, 
       28, 89, 63, 0, time.UTC)
  
    // Calling Year method
    yr := t.Year()
  
    // Prints year as specified
    fmt.Printf("The stated year in the"+
         " 't' specified is: %v\n", yr)
}

Producción:

The stated year in the 't' specified is: 2020

Aquí, la «t» indicada anteriormente tiene valores que están fuera del rango habitual pero se normalizan 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 *