摘要:
参数 func say(s:String){ print(s) } say(s: "hello") 参数默认值 unc say(age:Int=12){ print(age) } say() 参数标签 可变参数 unc say(_ num:Int...){ for i in num{ print(i 阅读全文
摘要:
for in while repeat{ }while if switch 阅读全文
摘要:
1.启动go module set GO111MODULE=on GO111MODULE=off 禁用模块支持,编译时会从GOPATH和vendor文件夹中查找包 GO111MODULE=on启用模块支持,编译时会忽略GOPATH和vendor文件夹,只根据 go.mod下载依赖 GO111MODU 阅读全文