<span style="font-size: 14px;">print</span>
在golang中是屬於輸出到標準錯誤流中並列印,官方不建議寫程式的時候用它,可以在debug的時候用。
<span style="font-size: 14px;">fmt.print</span>
# 在golang中是屬於標準輸出流,一般使用它來進行螢幕輸出。
<span style="font-size: 14px;">fmt.Printf</span>
是格式化輸出;fmt.Println
是輸出後換行;fmt.Sprint
是傳回一個格式化的字串。
相關文章教學:golang教學
以上是golang中的print與fmt的差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!