您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Println與Printf在Go中有什么不同,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Println 和Printf 都是fmt包中公共方法;在需要打印信息時常用的函數,那么二函數有什么區別呢?
package main import ( "time" "fmt" ) const ( Man = 1 Female = 2 ) func main(){ timer := time.Now().Unix() if(timer % Female == 0){ fmt.Println("%d is Female", timer) fmt.Printf("%d is Female", timer) }else{ fmt.Println("%d is Man", timer) fmt.Printf("%d is Man", timer) } }
運行結果:
%d is Man 1529049077 // println輸出結果
1529049077 is Man // printf輸出結果
結果可知
Printf : 可打印出格式化的字符串,Println不行;
總結:
println會根據你輸入格式原樣輸出,printf需要格式化輸出并帶輸出格式;
補充:Go基礎-Go中的Println和Print和Printf之間的區別
1、Println
在Println中進行輸出時:
package main import ( f "fmt" ) func main(){ f.Println("hello","world","hello","world") f.Println("hello","world","hello","world") }
輸出:
/private/var/folders/yt/24f_qg2n6879g2fg85994jf40000gn/T/___go_build_helloworld_go #gosetup
hello world hello world
hello world hello world
Process finished with exit code 0
在同一輸出函數中輸出多項的時候,hello和world中是存在空格的
在不同輸出函數之間會換行
2、Print
在Print中進行輸出時:
package main import f "fmt" func main(){ f.Print("hello","world","hello","world") f.Print("hello","world","hello","world") }
輸出:
/private/var/folders/yt/24f_qg2n6879g2fg85994jf40000gn/T/___go_build_helloworld_go #gosetup
helloworldhelloworldhelloworldhelloworld
Process finished with exit code 0
在同一個輸出函數中處處多項的時候,hello和world中不存在空格
在不同輸出函數之間,不換行
3、Printf
在Printf進行輸出時:
package main import f "fmt" func main(){ a := 10 b := 20 c := "hello" f.Printf("a=%d,b=%d",a,b) f.Printf("c=%s",c) }
輸出:
/private/var/folders/yt/24f_qg2n6879g2fg85994jf40000gn/T/___go_build_helloworld_go #gosetup
a=10,b=20c=hello
Process finished with exit code 0
可以對參數進行格式化輸出,在不同輸出函數中是不換行的。
總結:
函數 | 同函數輸出多項 | 不同函數輸出 |
Println | 之間存在空格 | 換行 |
不存在空格 | 不換行 | |
Printf | 格式化輸出 | 不換行 |
關于Println與Printf在Go中有什么不同就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。