typora/note/Go/fmt包.md
2024-12-12 10:48:55 +08:00

6 lines
137 B
Markdown

### fmt 各种v
```go
%v 按默认格式输出
%+v %v的基础上额外输出字段名
%#v %+v的基础上额外输出类型名
```