función time.Hours() en Golang con ejemplos

En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Hours() en el lenguaje Go se usa para encontrar la duración del tiempo en forma de un número de horas 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) Hours() float64

Aquí, d es la duración del tiempo.

Valor devuelto: Devuelve la duración como float64.

Ejemplo 1:

// Golang program to illustrate the usage of
// Hours() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration of Hours method
    hr, _ := time.ParseDuration("3h25m")
  
    // Prints duration as
    // floating point number
    fmt.Printf("Only %.1f hours of task is"+
                  " remaining.", hr.Hours())
}

Producción:

Only 3.4 hours of task is remaining.

Ejemplo 2:

// Golang program to illustrate the usage of
// Hours() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration of Hours method
    hr, _ := time.ParseDuration("3h25m1200s6543356ms")
  
    // Prints duration as 
    // floating point number
    fmt.Printf("Only %.1f hours of "+
      "task is remaining.", hr.Hours())
}

Producción:

Only 5.6 hours 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

Deja una respuesta

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