[GO]切片和底層數組的關係

來源:互聯網
上載者:User

標籤:變更   main   port   實驗   存在   code   ack   數組   func   

package mainimport "fmt"func main()  {    a := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}    s1 := a[2:5]    s1[1] = 444    fmt.Println("s1 = ", s1)    s2 := s1[1:6]    s2[1] = 555    fmt.Println("s2 = ", s2)    fmt.Println("a = ", a)}

執行的結果為:

s1 =  [2 444 4]s2 =  [444 555 5 6 7]a =  [0 1 2 444 555 5 6 7 8 9]

通過結果就能看得出來,雖然s1對數組進行了截取,我們看到的結果也是截取的片段,但它只是顯示出了我們想看到的,其它在它之後還是存在著原始切片的值的

而且通過對新的切片做的修改,原始的切片的元素也發生了變更

通過實驗得到,不管a是數組還是切片,結果都是相同的

[GO]切片和底層數組的關係

相關文章

聯繫我們

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