douke9545 2015-01-19 21:25
浏览 343
已采纳

fmt.Print()是否在GoLang中写入stdout?

I may be overthinking this too much, but in GoLang, does fmt.Print() write to stdout or do I have to use os.Stdout.Write?

  • 写回答

3条回答 默认 最新

  • dsux90368 2015-01-19 21:26
    关注

    From the documentation:

    Print formats using the default formats for its operands and writes to standard output.

    So yep, it writes to stdout.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?