Skip to content

Commit

Permalink
Update 04.8.md (unknwon#826)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Chen <[email protected]>
  • Loading branch information
jiangyimm and unknwon authored Mar 4, 2022
1 parent 4468f9f commit e252b70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eBook/04.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Duration 类型表示两个连续时刻所相差的纳秒数,类型为 int64

包中的一个预定义函数 `func (t Time) Format(layout string) string` 可以根据一个格式化字符串来将一个时间 t 转换为相应格式的字符串,你可以使用一些预定义的格式,如:`time.ANSIC``time.RFC822`

一般的格式化设计是通过对于一个标准时间的格式化描述来展现的,这听起来很奇怪,但看下面这个例子你就会一目了然:
一般的格式化设计是通过对于一个标准时间的格式化描述来展现的,这听起来很奇怪(02 Jan 2006 15:04 是 Go 语言的诞生时间且自定义格式化时必须以此时间为基准),但看下面这个例子你就会一目了然:


```go
fmt.Println(t.Format("02 Jan 2006 15:04"))
Expand Down

0 comments on commit e252b70

Please sign in to comment.