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

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

Sintaxis:

func (m Month) String() string

Aquí, “m” es el tipo Mes.

Valor devuelto: Devuelve una string que es el nombre en inglés del mes.

Ejemplo 1:

// Golang program to illustrate the usage of
// (Month) String() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Calling time.Month
    // with its parameter
    // of type int
    var m = time.Month(2)
  
    // Prints the English 
    // name of the month
    fmt.Println(m.String())
}

Producción:

February

Ejemplo 2:

// Golang program to illustrate the usage of
// (Month) String() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Calling time.Month
    // with its parameter
    // of type int
    var m = time.Month(12)
  
    // Prints the English name of 
    // the month
    fmt.Println(m.String())
}

Producción:

December

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 *