摘要: 1、在go中,函数可以同时返回多个值,写法如下: func GetFuncValue() (i, string) { ... return i, s } 2、函数调用之后用于接收返回值的变量也应要有多个进行对应,写法如下: RecIvalue, RecSvalue := GetFuncValue() 阅读全文
posted @ 2021-01-20 22:19 migui 阅读(55) 评论(0) 推荐(0) 编辑