Golang : Calculate future date with time.Add() function
Problem :
You need to calculate future dates by number of days. This can be use in calculating expiring dates or day to execute certain task. How to do that in Golang?
Solution :
Use time.Add()
function to calculate the different between today and future date.
For example :
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println("Today : ", now.Format("Mon, Jan 2, 2006 at 3:04pm"))
threeDays := time.Hour * 24 * 3
diff := now.Add(threeDays)
fmt.Println("Three days from now will be : ", diff.Format(time.ANSIC))
}
Sample output :
Today : Mon, May 18, 2015 at 11:03am
Three days from now will be : Thu May 21 11:03:31 2015
References :
http://golang.org/pkg/time/#Time.Add
https://www.socketloop.com/tutorials/golang-calculate-time-different
See also : Golang : Calculate time different
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.8k Golang : package is not in GOROOT during compilation
+10.4k Golang : Interfacing with PayPal's IPN(Instant Payment Notification) example
+5.2k Unix/Linux/MacOSx : How to remove an environment variable ?
+5k Golang : Issue HTTP commands to server and port example
+29.6k Golang : Get time.Duration in year, month, week or day
+7.8k Golang : What fmt.Println() can do and println() cannot do
+5.2k Python : Delay with time.sleep() function example
+5.5k List of Golang XML tutorials
+9.5k Golang : Sort and reverse sort a slice of floats
+10.3k Golang : How to unmarshal JSON inner/nested value and assign to specific struct?
+14.2k Golang : Parsing or breaking down URL
+12.1k Golang : Get month name from date example