Go的运行时结构生成器-Golang开发

时间:2024-06-15 12:20:06
【文件属性】:

文件名称:Go的运行时结构生成器-Golang开发

文件大小:3KB

文件格式:ZIP

更新时间:2024-06-15 12:20:06

Golang Utilities

用于go gostruct的Runtime Struct构建器用于Go go的Runtime Struct构建器示例func Example(){person:= gostruct.New()。 AddString(“ Name”)。 AddInt64(“ Age”)。 Build()p:= person.New()p.SetString(“ Name”,“ gopher”)p.SetInt64(“ Age”,11)fmt.Printf(“%T:%+ v \ n”,p。 Interface(),p.Interface())fmt.Printf(“%T:%+ v \ n”,p.Addr(),p.Addr())//输出:// struct {名称字符串; Age int64}:{Name:gopher Age:11} // * struct {名称字符串; 年龄int64}:&{Name:gopher年龄:11}}


【文件预览】:
gostruct-main
----.gitignore(269B)
----Makefile(79B)
----LICENSE(1KB)
----builder_test.go(485B)
----README.md(475B)
----builder.go(2KB)

网友评论