https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往
摘要: 在Go中函数也是一种变量,我们可以通过type来定义它,它的类型就是所有拥有相同的参数,相同的返回值的一种类型type typeName func(input1 inputType1 , input2 inputType2 [, …]) (result1 r... 阅读全文
posted @ 2018-07-20 15:01 鱼酱 阅读(114) 评论(0) 推荐(0) 编辑
摘要: package mainimport ( "fmt")//Go函数支持变参。接受变参的函数是有着不定数量的参数的//注意,这些参数的类型全部是intfunc myfunc(arg ...int) { for _, n := range arg {... 阅读全文
posted @ 2018-07-20 14:40 鱼酱 阅读(95) 评论(0) 推荐(0) 编辑

https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往