Go by Example: Slices

來源:互聯網
上載者:User

標籤:golang   go   go語言   切片   slice   

切片是Go語言的關鍵類型之一,它提供了比數組更加強大的隊列相關介面。


package mainimport "fmt"func main() {    // 和數組不同的是,切片的類型僅由它所包含的元素決定。    // 使用內建函數make可以建立一個長度不為零的切片。    // 下面建立了一個長度為3,儲存字串的切片,    // 切片元素預設為零值,對於字串就是""。    s := make([]string, 3)    fmt.Println("emp:", s)    // 和數組一樣可以使用<strong>index</strong>來設定元素值或擷取元素值    s[0] = "a"    s[1] = "b"    s[2] = "c"    fmt.Println("set:", s)    fmt.Println("get:", s[2])    // 可以使用內建函數len來擷取切片的長度    fmt.Println("len:", len(s))    // 切片還擁有一些數組所沒有的功能。    // 例如我們可以使用內建函數append給切片追加值,    // 然後返回一個擁有新切片元素的切片。    // 注意append函數不會改變原切片,而是產生了一個新切片,    // 我們需要用原來的切片來接收這個新切片    s = append(s, "d")    s = append(s, "e", "f")    fmt.Println("apd:", s)    // 此外,我們還可從一個切片拷貝元素到另一個切片    // 下面的例子就是建立了一個和切片s長度相同的新切片    // 然後使用內建的copy函數來拷貝s的元素到c中。    c := make([]string, len(s))    copy(c, s)    fmt.Println("cpy:", c)    // 切片還支援一個取切片的操作 "slice[low:high]"    // 擷取的新切片包含元素"slice[low]",但是不包含"slice[high]"    // 下面的例子就是取一個新切片,元素包括"s[2]","s[3]","s[4]"。    l := s[2:5]    fmt.Println("sl1:", l)    // 如果省略low,預設從0開始,不包括"slice[high]"元素    l = s[:5]    fmt.Println("sl2:", l)    // 如果省略high,預設為len(slice),包括"slice[low]"元素    l = s[2:]    fmt.Println("sl3:", l)    // 可以使用一行來同時聲明和初始化一個切片    t := []string{"g", "h", "i"}    fmt.Println("dcl:", t)    // 我們也可以建立多維切片,和數組不同的是,切片元素的長度也是可變的。    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)}
儘管切片和資料是不同的類型,但是使用 fmt.Println 輸出時候格式相似。

$ <strong>go run slices.go</strong>emp: [  ]set: [a b c]get: clen: 3apd: [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語言的另外一個內建的資料結構:Maps。

要瞭解更多關於切片,請查看學習Golang語言(6): 類型--切片

下一個例子: Go by Example:  Maps.


英文原文

Go by Example: Slices

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.