GO語言(golang)切片slice

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

切片slice是參考型別 len()函數擷取元素的個數 cap()擷取數組的容量

1.申明方式
[php]
(1)var a []int 與數組不同的是他不申明長度
(2)s2 := make([]int, 3, 10) //元素的類型,元素的數量,元素的容量
fmt.Println(len(s2), cap(s2)) 輸出元素的數量和容量
[/php]
2.講數群組轉換成切片
[php]
a := [10]int{}
fmt.Println(a)
s1 := a[:10] //取前10個元素 [5:]取 5-最後的元素
fmt.Println(s1)
[/php]
3.slice測試
[php]
a := []byte{‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘h’}
sa := a[2:5]
fmt.Println(string(sa))
sd1 := a[3:5]
fmt.Println(string(sd1)) //看看效果
[/php]
我們看到這樣的是slice_a指向Array_ori 其實是從c指向到k 我們用fmt.Println(cap(slice_a)) 結果肯定不是3

自己動手試一下下邊這個
[php]
a := []byte{‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘h’}
sa := a[2:5]
fmt.Println(string(sa))
s := sa[1:3]
fmt.Println(string(s))
s2 := sa[3:5]
fmt.Println(string(s2))
[/php]
4.Apppend的用法
當使用append的時候,我們追加元素到切片的尾部,如果我們追加的在slice容量之中的時候我們會發現,記憶體位址是不改變的,如果我們追加的超過容量了,記憶體位址也就改變了
[php]
a := make([]int, 3, 6)
fmt.Printf("%p", a)
a = append(a, 1, 2, 3)
fmt.Printf("%v %p\n", a, a)
a = append(a, 1, 2, 3)
fmt.Printf("%v %p\n", a, a)
[/php]
運行如

slice是指向底層的數組,如果多個slice指向同一個的時候,其中一個改變了,其他的都改變。試一下下邊這個
[php]
a := []int{1, 2, 3, 4, 5}
s1 := a[2:5]
s2 := a[1:3]
fmt.Println(s1, s2)
s1[0] = 9
fmt.Println(s1, s2)
[/php]
當slice中append追加的元素超過了指向的容量,就會重新指向一個新的底層數組,所以一個底層數組的改變,不會帶動其他的改變,試一下下邊的代碼
[php]
a := []int{1, 2, 3, 4, 5}
s1 := a[2:5]
s2 := a[1:3]
fmt.Println(s1, s2)
s2 = append(s2, 1, 2, 2, 3, 3, 4, 5)
s1[0] = 9
fmt.Println(s1, s2)
[/php]
5.copy
這是一個拷貝的函數,下邊的代碼是從s2拷貝到s1然後我們會看到結果是[7 8 9 4 5]
如果是copy(s2,s1) 我們看到的結果是[1 2 3]
[php]
s1 := []int{1, 2, 3, 4, 5}
s2 := []int{7, 8, 9}
copy(s1, s2)
fmt.Println(s1)
[/php]

未經允許,不得轉載本站任何文章:微度網路 » GO語言(golang)切片slice

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.