[pkg]fmt包
fmt
General
%v %+v %#v
%v the value in a default format when printing structs, the plus flag (%+v) adds field names
%v會簡單印出內容值,但%+v會印欄位名
%#v a Go-syntax representation of the value
會印結構名+欄位名與內容值
範例:
這邊可以看到前兩者欄位之間還會有空白
延伸
[关于fmt包Fprint系列方法的性能问题](https://blog.csdn.net/FishGoddess/article/details/104809139)
Last updated