摘要: ==函数高级== // 函数 1 没有参数没有返回值 fun 函数名(){} 2 有参数没有返回值 fun 函数名(a int){} 3 多个参数同一种类型,可以简写 fun 函数名(a,b int){} 4 多个参数同一种类型,有返回值可以简写 fun 函数名(a,b int)int{ retru 阅读全文
posted @ 2023-04-26 18:48 缀月 阅读(15) 评论(0) 推荐(0) 编辑