diff options
Diffstat (limited to 'libgo/go/time/example_test.go')
-rw-r--r-- | libgo/go/time/example_test.go | 43 |
1 files changed, 40 insertions, 3 deletions
diff --git a/libgo/go/time/example_test.go b/libgo/go/time/example_test.go index cda565f..cfa5b38 100644 --- a/libgo/go/time/example_test.go +++ b/libgo/go/time/example_test.go @@ -58,15 +58,52 @@ func ExampleDate() { } func ExampleTime_Format() { - const format = "Jan 2, 2006 at 3:04pm (MST)" + // layout shows by example how the reference time should be represented. + const layout = "Jan 2, 2006 at 3:04pm (MST)" t := time.Date(2009, time.November, 10, 15, 0, 0, 0, time.Local) - fmt.Println(t.Format(format)) - fmt.Println(t.UTC().Format(format)) + fmt.Println(t.Format(layout)) + fmt.Println(t.UTC().Format(layout)) // Output: // Nov 10, 2009 at 3:00pm (PST) // Nov 10, 2009 at 11:00pm (UTC) } +func ExampleParse() { + // longForm shows by example how the reference time would be represented in + // the desired layout. + const longForm = "Jan 2, 2006 at 3:04pm (MST)" + t, _ := time.Parse(longForm, "Feb 3, 2013 at 7:54pm (PST)") + fmt.Println(t) + + // shortForm is another way the reference time would be represented + // in the desired layout; it has no time zone present. + // Note: without explicit zone, returns time in UTC. + const shortForm = "2006-Jan-02" + t, _ = time.Parse(shortForm, "2013-Feb-03") + fmt.Println(t) + + // Output: + // 2013-02-03 19:54:00 -0800 PST + // 2013-02-03 00:00:00 +0000 UTC +} + +func ExampleParseInLocation() { + loc, _ := time.LoadLocation("Europe/Berlin") + + const longForm = "Jan 2, 2006 at 3:04pm (MST)" + t, _ := time.ParseInLocation(longForm, "Jul 9, 2012 at 5:02am (CEST)", loc) + fmt.Println(t) + + // Note: without explicit zone, returns time in given location. + const shortForm = "2006-Jan-02" + t, _ = time.ParseInLocation(shortForm, "2012-Jul-09", loc) + fmt.Println(t) + + // Output: + // 2012-07-09 05:02:00 +0200 CEST + // 2012-07-09 00:00:00 +0200 CEST +} + func ExampleTime_Round() { t := time.Date(0, 0, 0, 12, 15, 30, 918273645, time.UTC) round := []time.Duration{ |