get download and install packages and dependencies
install = compile and install packages and dependencies
run compile and run Go program
build compile packages and dependencies
不用加分号
if 语 ...……
Go语言没有像Java一样的注解快速进行参数的校验,但可以通过struct tag(结构体标签)进行序列化。常用的如:
type User struct { ID string `json:amp;quot;idamp;quot;` Name string `json:amp;quot;nameamp;quot; ...……
使用json序列化与反序列化的方式(有一个数字转换的坑)
package t8
import (
amp;quot;encoding/jsonamp;quot;
amp;quot;fmtamp;quot;
amp;quot;testingamp;quot;
)
type Student struct{
Name st ...……