En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Weekday.String() en el lenguaje Go se usa para encontrar el nombre del día en inglés. Además, esta función se define en el paquete de tiempo. Aquí, debe importar el paquete «tiempo» para usar estas funciones.
Sintaxis:
func (d Weekday) String() string
Aquí, “d” es el tipo Día de la semana.
Valor devuelto: Devuelve una string que es el nombre en inglés del día.
Ejemplo:
// Golang program to illustrate the usage of // Weekday.String() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Calling time.Weekday // with its parameter // of type int var d = time.Weekday(0) var e = time.Weekday(1) var f = time.Weekday(2) var g = time.Weekday(3) var h = time.Weekday(4) var i = time.Weekday(5) var j = time.Weekday(6) // Prints the English // name of the day fmt.Println(d.String()) fmt.Println(e.String()) fmt.Println(f.String()) fmt.Println(g.String()) fmt.Println(h.String()) fmt.Println(i.String()) fmt.Println(j.String()) }
Producción:
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA