这篇文章主要介绍“golang verb的作用是什么”,在日常操作中,相信很多人在golang verb的作用是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”golang verb的作用是什么”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
Printf、Sprintf、Fprintf三个函数的format参数中,均可放置占位符verb,来对对应数值进行格式化字符串。
通用verb
%v 值的默认格式表示 %+v 类似%v,但输出结构体时会添加字段名 %#v 值的Go语法表示 %T 值的类型的Go语法表示 %% 百分号
package main import "fmt" type Foo struct { Fo int Bar string } func main() { foo := Foo{} fmt.Printf("%v \n", foo) fmt.Printf("%+v \n", foo) fmt.Printf("%#v \n", foo) fmt.Printf("%T \n", foo) fmt.Printf("%% \n") }
输出:
{0 }
{Fo:0 Bar:}
main.Foo{Fo:0, Bar:""}
main.Foo
%
Chan、Func、Map、Ptr、Slice、UnsafePointer
%p 内存地址,表示为十六进制,并加上前导的0x
package main import "fmt" type Foo struct { bar int } func main() { s := []string{} fmt.Printf("%p \n", s) m := map[string]string{} fmt.Printf("%p \n", m) c := make(chan int) fmt.Printf("%p \n", c) f := func() {} fmt.Printf("%p \n", f) i := 1 p := &i fmt.Printf("%p \n", &i) fmt.Printf("%p \n", p) foo := Foo{} fmt.Printf("%p \n", foo) }
0x1195ab8
0xc000070180
0xc00006e060
0x109b260
0xc000016078
0xc000016078
%!p(main.Foo={0})
fmtBool
%t 内存地址,表示为十六进制,并加上前导的0x
package main import "fmt" func main() { t := true fmt.Printf("%t \n", t) f := false fmt.Printf("%t \n", f) }
true
false
fmtFloat
b g G x X f F e E
fmtComplex
fmtInteger
fmtString
fmtBytes
到此,关于“golang verb的作用是什么”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。