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

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

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

Valor de retorno: Devuelve el valor de duración como float64.

Ejemplo 1:

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

Producción:

Only 2040.0 minutes of task is remaining.

Ejemplo 2:

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

Producción:

Only 78.6 minutes 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 *