En el lenguaje Go, los paquetes de tiempo brindan funcionalidad para determinar y ver el tiempo. La función Microsegundos() en el lenguaje Go se usa para encontrar la duración del tiempo en forma de un recuento de microsegundos entero. 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) Microseconds() int64
Aquí, d es la duración del tiempo.
Valor devuelto: Devuelve el valor de duración como int64.
Ejemplo 1:
// Golang program to illustrate the usage of // Microseconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration // of Microseconds method micr, _ := time.ParseDuration("5m") // Prints duration as // an integer microsecond fmt.Printf("Only %d Microseconds of task "+ "is remaining.", micr.Microseconds()) }
Producción:
Only 300000000 Microseconds of task is remaining.
Ejemplo 2:
// Golang program to illustrate the usage of // Microseconds() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining duration of Microseconds method micr, _ := time.ParseDuration("1m1s576ms46ns") // Prints duration as // an integer microsecond fmt.Printf("Only %d Microseconds of "+ "task is remaining.", micr.Microseconds()) }
Producción:
Only 61576000 Microseconds 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