Open In App

time.Milliseconds() Function in Golang With Examples

Last Updated : 21 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Go language, time packages supplies functionality for determining as well as viewing time. The Milliseconds() function in Go language is used to find the duration of time in form of an integer millisecond count. Moreover, this function is defined under the time package. Here, you need to import the “time” package in order to use these functions.

Syntax:

func (d Duration) Milliseconds() int64

Here, d is the duration of time.

Return Value: It returns the duration value as int64.

Example 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())
}


Output:

Only 7000 milliseconds of task is remaining.

Example 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())
}


Output:

Only 7262000 milliseconds of task is remaining.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads