Skip to content

Commit

Permalink
Updates 11-hello.md
Browse files Browse the repository at this point in the history
Auto commit by GitBook Editor
  • Loading branch information
FengNote committed Aug 16, 2016
1 parent 5520eac commit 4816639
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 11-hello.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ Printf有一堆这样的转换符,这些东西在Go的圈子里被程序员成

%x,%o,%b 十六进制、八进制、二进制的整数

%f,%g,%e 浮点数, 根据情况选择 %e 或 %f 以产生更紧凑的(无末尾的 0)输出 ,科学计数法 e.g. 3.141593 3.141592653589793 3.141593e+00
%f,%g,%e 浮点数, 根据情况选择 %e 或 %f 以产生更紧凑的(无末尾的 0)输出 ,科学计数法 e.g. 3.141593 3.141592653589793 3.141593e+00

%t boolean: true 或是false
%t boolean: true 或是false

%c rune\(Unicode点表示的字符\)

Expand All @@ -214,3 +214,7 @@ Printf有一堆这样的转换符,这些东西在Go的圈子里被程序员成



dup1中的格式化字符串还包括一个tab符 \t和一个换行符\n。Stringz可能会包含一些表示不可见符号的转义序列。Printf不会默认在行尾加上一个换行符。一般的约定俗成是名字后面以f结尾的格式化函数,比如log.Printf和fmt.Errorf都是用类似于fmt.Printf的格式化规则,而那些以ln结尾的函数则使用Println的规则,会把参数值按照%v处理使用默认类型,然后结尾自动加个换行。



0 comments on commit 4816639

Please sign in to comment.