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

En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Time.Day() en el lenguaje Go se usa para verificar el día del mes en el que se presenta la «t» indicada. 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) Day() int

Aquí, “t” es el tiempo indicado.

Valor de retorno: Devuelve el día del mes en que ocurre la “t” indicada.

Ejemplo 1:

// Golang program to illustrate the usage of
// Time.Day() 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(2020, 5, 6, 11, 45, 04, 0, time.UTC)
  
    // Calling Day method
    dd := t.Day()
  
    // Prints day
    fmt.Printf("The stated day is: %v\n", dd)
}

Producción:

The stated day is: 6

Ejemplo 2:

// Golang program to illustrate the usage of
// Time.Day() 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(2020, 5, 36, 11, 45, 04, 0, time.UTC)
  
    // Calling Day method
    dd := t.Day()
  
    // Prints day
    fmt.Printf("The stated day is: %v\n", dd)
}

Producción:

The stated day is: 5

Aquí, el día 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

Deja una respuesta

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