幽灵资源网 Design By www.bzswh.com

本文实例讲述了Go语言获取数组长度的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:// getting the length of an array is silly, because the length is part of the array's static type
myArray := [3]int{1, 2, 3}
fmt.Println(len(myArray)) // prints 3
// getting the length of a slice
mySlice := []int{1, 2, 3}
fmt.Println(len(mySlice)) // prints 3

希望本文所述对大家的Go语言程序设计有所帮助。

标签:
Go语言,获取,数组长度,方法

幽灵资源网 Design By www.bzswh.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
幽灵资源网 Design By www.bzswh.com