Q:

Golang program to demonstrate the ParseDuration() function

belongs to collection: Golang Date & Time Programs

0

In this program, we will use ParseDuration() function to create a time object based on a specified string. After that, we will print Minutes, Seconds, and Nanoseconds() based on the time value of time objects on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the ParseDuration() function is given below. The given program is compiled and executed successfully.

// Golang program to demonstrate the
// ParseDuration() function

package main

import "fmt"
import "time"

func main() {
	time1, _ := time.ParseDuration("20h")
	time2, _ := time.ParseDuration("2h15m17s")
	time3, _ := time.ParseDuration("10µs")

	fmt.Printf("Total Minutes in time1: %f\n", time1.Minutes())
	fmt.Printf("Total Seconds in time2: %f\n", time2.Seconds())
	fmt.Printf("Total Nanoseconds in time3: %d\n", time3.Nanoseconds())
}

Output:

Total Minutes in time1: 1200.000000
Total Seconds in time2: 8117.000000
Total Nanoseconds in time3: 10000

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the main() function, we created three-time objects using ParseDuration() function by specifying time value. After that, we printed MinutesSecondsNanoseconds values corresponding to time objects on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang Date & Time Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to add given number of days to the ... >>
<< Golang program to find the difference between two ...