📜  Golang 中的 time.Milliseconds()函数示例

📅  最后修改于: 2021-10-25 03:00:28             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Milliseconds()函数用于以整数毫秒计数的形式查找持续时间。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (d Duration) Milliseconds() int64

这里,d 是持续时间。

返回值:它将持续时间值返回为 int64。

示例 1:

// Golang program to illustrate the usage of
// Milliseconds() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration
    // of Milliseconds method
    milli, _ := time.ParseDuration("7s")
  
    // Prints duration as 
    // an integer milliseconds
    fmt.Printf("Only %d milliseconds of "+
      "task is remaining.", milli.Milliseconds())
}

输出:

Only 7000 milliseconds of task is remaining.

示例 2:

// Golang program to illustrate the usage of
// Milliseconds() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration of 
    // Milliseconds method
    milli, _ := time.ParseDuration("2h1m2s4545ns")
  
    // Prints duration as 
    // an integer milliseconds
    fmt.Printf("Only %d milliseconds of"+
     " task is remaining.", milli.Milliseconds())
}

输出:

Only 7262000 milliseconds of task is remaining.