En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Time.Minute() en el lenguaje Go se utiliza para encontrar la diferencia de minutos dentro de la hora indicada proporcionada por «t» y el rango es [0, 59]. 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) Minute() int
Aquí, “t” es el tiempo indicado.
Valor devuelto: Devuelve el minuto de desfase dentro de la hora indicada que proporciona “t”.
Ejemplo 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) }
Producción:
The stated minute within the hour specified is: 35
Ejemplo 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) }
Producción:
The stated minute within the hour specified is: 31
Aquí, el minuto indicado 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