- Go语言入门
- Go语言开发环境安装配置
- Go语言程序结构
- Go语言基础语法
- Go语言数据类型
- Go语言变量
- Go语言常量
- Go语言运算符
- Go语言条件和决策
- Go语言循环
- Go语言函数
- Go语言作用域规则
- Go语言字符串
- Go语言数组
- Go语言指针
- Go语言结构体
- Go语言切片
- Go语言范围(range)
- Go语言映射
- Go语言递归
- Go语言类型转换
- Go语言接口
- Go语言错误处理
-
Go编程代码实例
- Hello World程序实例
- Go变量实例
- Go常量实例
- Go for循环语句实例
- Go if/else语句实例
- Go switch语句实例
- Go切片实例
- Go范围实例
- Go函数实例
- Go函数多个返回值实例
- Go可变参数的函数实例
- Go闭包(匿名函数)实例
- Go函数递归实例
- Go指针实例
- Go指针实例
- Go接口实例
- Go错误实例
- Go程序实例
- Go通道实例
- Go通道缓冲实例
- Go通道同步实例
- Go通道路线实例
- Go Select实例
- Go超时(timeouts)实例
- Go非阻塞通道操作实例
- Go关闭通道实例
- Go通道范围实例
- Go计时器实例
- Go断续器实例
- Go工作池实例
- Go速率限制实例
- Go原子计数器实例
- Go互斥体实例
- Go有状态的goroutines实例
- Go排序实例
- Go按自定义函数排序实例
- Go panic错误处理实例
- Go延迟(defer)实例
- Go集合函数实例
- Go字符串函数实例
- Go字符串格式化实例
- Go正则表达式实例
- Go JSON实例
- Go时间日期实例
- Go时代(Epoch)实例
- Go时间格式化/解析实例
- Go随机数实例
- Go数字解析实例
- Go URL解析实例
- Go SHA1哈希实例
- Go Base64编码实例
- Go读取文件实例
- Go写文件实例
- Go行过滤器实例
- Go命令行参数实例
- Go命令行标志实例
- Go环境变量实例
- Go执行过程实例
- Go信号实例
- Go退出程序实例
Go切片实例
切片是Go语言中的关键数据类型,为序列提供了比数组更强大的接口。
所有的示例代码,都放在
F:\worksp\golang
目录下。安装Go编程环境请参考:/tutorial/detail-5562.html
与数组不同,切片(slice)只是由它们包含的元素(而不是元素的数量)键入。要创建非零长度的空切片,请使用内置make()
函数。这里创建一个长度为3
的字符串(初始为零值)。
我们可以像数组一样设置和获取字符串的子串值。len()
函数返回切片的长度。
除了这些基本操作之外,切片还支持更多,使它们比数组更丰富。一个是内置 append()
函数,它返回包含一个或多个新值的切片。注意,需要接收append()
函数的返回值,因为可能得到一个新的slice
值。
也可以复制切片。这里创建一个与切片s
相同长度的空切片c
,并从切片s
复制到c
中。切片支持具有语法为slice[low:high]
的切片运算符。 例如,这获得元素s[2]
,s[3]
和s[4]
的切片。
这切片到(但不包括)s[5]
。这切片从(包括)s[2]
。可以在一行中声明并初始化slice
的变量。
切片可以组成多维数据结构。内切片的长度可以变化,与多维数组不同。
看看这个博客文章了解Go团队的设计和切片在Go
的实现的更多细节。
现在已经看到了数组和切片,看看Go
编程的其他关键内置数据结构:maps
。
slices.go
的完整代码如下所示 -
package main import "fmt" func main() { // Unlike arrays, slices are typed only by the // elements they contain (not the number of elements). // To create an empty slice with non-zero length, use // the builtin `make`. Here we make a slice of // `string`s of length `3` (initially zero-valued). s := make([]string, 3) fmt.Println("emp:", s) // We can set and get just like with arrays. s[0] = "a" s[1] = "b" s[2] = "c" fmt.Println("set:", s) fmt.Println("get:", s[2]) // `len` returns the length of the slice as expected. fmt.Println("len:", len(s)) // In addition to these basic operations, slices // support several more that make them richer than // arrays. One is the builtin `append`, which // returns a slice containing one or more new values. // Note that we need to accept a return value from // append as we may get a new slice value. s = append(s, "d") s = append(s, "e", "f") fmt.Println("apd:", s) // Slices can also be `copy`'d. Here we create an // empty slice `c` of the same length as `s` and copy // into `c` from `s`. c := make([]string, len(s)) copy(c, s) fmt.Println("cpy:", c) // Slices support a "slice" operator with the syntax // `slice[low:high]`. For example, this gets a slice // of the elements `s[2]`, `s[3]`, and `s[4]`. l := s[2:5] fmt.Println("sl1:", l) // This slices up to (but excluding) `s[5]`. l = s[:5] fmt.Println("sl2:", l) // And this slices up from (and including) `s[2]`. l = s[2:] fmt.Println("sl3:", l) // We can declare and initialize a variable for slice // in a single line as well. t := []string{"g", "h", "i"} fmt.Println("dcl:", t) // Slices can be composed into multi-dimensional data // structures. The length of the inner slices can // vary, unlike with multi-dimensional arrays. twoD := make([][]int, 3) for i := 0; i < 3; i++ { innerLen := i + 1 twoD[i] = make([]int, innerLen) for j := 0; j < innerLen; j++ { twoD[i][j] = i + j } } fmt.Println("2d: ", twoD) }
执行上面代码,将得到以下输出结果 -
F:\worksp\golang>go run slices.go emp: [ ] set: [a b c] get: c len: 3 apd: [a b c d e f] cpy: [a b c d e f] sl1: [c d e] sl2: [a b c d e] sl3: [c d e f] dcl: [g h i] 2d: [[0] [1 2] [2 3 4]]
上一篇:Go switch语句实例
下一篇:Go范围实例