Skip to content

Go 语言 fmt.Printf 函数详解

Published: at 08:55 AMSuggest Changes

看到这么一段代码

h := "world"
fmt.Printf("hello = %v\n", h)
log.Printf("halo = %v\n", h)

想了解一下 %v 的用法,于是就去查了一下,这个叫占位符。

https://stackoverflow.com/questions/41389933/when-to-use-log-over-fmt-for-debugging-and-printing-error

这个讲了 fmt.Printf 的用法,很详细

https://www.liwenzhou.com/posts/Go/go_fmt/


Previous Post
CSS `display: inline` 研究:多个 div 在一个段落内显示
Next Post
React 中使用定时器和性能优化