猿问

打印/访问超出范围的切片索引时不要惊慌

package main


import "fmt"


func main() {

    is := []int{1, 2}


    fmt.Println(is[2:]) // no panic here - this includes is[2] which is out of bound still no panic

    fmt.Println(is[3:]) // but panic here

    fmt.Println(is[2]) // panic here which is acceptable

}

在上面提到的程序中,is[2:] 没有恐慌,即使我们正在访问从 is[2] 到 on 病房的元素并且切片只有 2 个元素。为什么会这样?


浮云间
浏览 137回答 1
1回答

湖上湖

切片表达式的go 规范阐明了切片中使用的索引的要求:如果 0 <= low <= high <= max <= cap(a),则索引在范围内,否则超出范围。至于索引表达式,相关要求是:如果 0 <= x < len(a),则索引 x 在范围内,否则超出范围你的切片有len(a) == cap(a) == 2.&nbsp;您的三个测试用例是:切片:low == 2等于cap(a):在范围内切片:low == 3大于cap(a):超出范围索引:x == 2等于len(a):超出范围
随时随地看视频慕课网APP

相关分类

Go
我要回答