前言
golang 的fmt 包实现了格式化I/O函数,类似于C的 printf 和 scanf。
T 常用的格式化字符串有:
%v the value in a default format
when printing structs, the plus flag (%+v) adds field names
%#v a Go-syntax representation of the value
%T a Go-syntax representation of the type of the value
不同类型默认的%v 如下:
bool: %t
int, int8 etc.: %d
uint, uint8 etc.: %d, %#x if printed with %#v
float32, complex64, etc: %g
string: %s
chan: %p
pointer: %p
提示:以下是本篇文章正文内容,下面案例可供参考