摘要: 参数 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 阅读全文
posted @ 2020-05-19 19:52 富坚老贼 阅读(130) 评论(0) 推荐(0) 编辑
摘要: for in while repeat{ }while if switch 阅读全文
posted @ 2020-05-19 19:21 富坚老贼 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1.启动go module set GO111MODULE=on GO111MODULE=off 禁用模块支持,编译时会从GOPATH和vendor文件夹中查找包 GO111MODULE=on启用模块支持,编译时会忽略GOPATH和vendor文件夹,只根据 go.mod下载依赖 GO111MODU 阅读全文
posted @ 2020-05-19 13:44 富坚老贼 阅读(231) 评论(0) 推荐(0) 编辑