En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Seconds() en el lenguaje Go se usa para encontrar la duración del tiempo en forma de un número de segundos de coma flotante. 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 Duration) Seconds() float64
Aquí, d es la duración del tiempo.
Valor devuelto : Devuelve el valor de duración como float64.
Ejemplo 1:
// Golang program to illustrate the usage of // Seconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration // of Seconds method sec, _ := time.ParseDuration("7m") // Prints duration as a // floating point number fmt.Printf("Only %.1f seconds of "+ "task is remaining.", sec.Seconds()) }
Producción:
Only 420.0 seconds of task is remaining.
Ejemplo 2:
// Golang program to illustrate the usage of // Seconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration // of Seconds method sec, _ := time.ParseDuration("3h8m756s6576.587ns") // Prints duration as a // floating point number fmt.Printf("Only %.1f seconds of "+ "task is remaining.", sec.Seconds()) }
Producción:
Only 12036.0 seconds of task is remaining.
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA