本文实例讲述了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语言程序设计有所帮助。
您可能感兴趣的文章:- php实现有序数组打印或排序的方法【附Python、C及Go语言实现代码】
- 深入理解Go语言中的数组和切片
- Go语言中数组的基本用法演示
- Go语言算法之寻找数组第二大元素的方法
- Go语言创建、初始化数组的常见方式汇总
- GO语言基础之数组
- 浅谈Go语言中字符串和数组
- GO语言数组和切片实例详解
- Go语言实现选择法排序实例
- Go语言实现冒泡排序、选择排序、快速排序及插入排序的方法
- Go语言使用sort包对任意类型元素的集合进行排序的方法
- Golang算法问题之数组按指定规则排序的方法分析