Golang之指標(point)再探索

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

先記錄代碼

package mainimport "fmt"/*聲明指標*T 是指向類型T的值的指標變數的類型*/func main() {    //b := 255    //var a *int = &b // a是int指標,指向b的記憶體位址    //fmt.Printf("Type of is:%T\n", a)    //fmt.Println("address of b is", a)    //    //a := 22    //var b *int //b 這個變數是int類型的指標變數,變數的值,也只能是int型指標    //if b == nil {    //    // 指標的零值是nil    //    fmt.Println("b is", b)    //    b = &a    //    fmt.Println("b after initialization is", b)    //}    //b := 255    //a := &b    //fmt.Println("address of b is", a)//列印b的記憶體位址    //fmt.Println("value of b is", *a)//列印b的值,可以通過*a指標    //b := 255    //a := &b    //fmt.Println("address of b is:", a) //b的記憶體位址    //fmt.Println("value of b is:", *a)    //*a++ //通過a的指標加一    //fmt.Println("new value of b is:", b)    //a := 58    //fmt.Println("value of a befor func call is:", a)    //b := &a    //change(b) //指標變數b,改變a的值,a=55,    //fmt.Println("value of a after call is:", a)    /*        不要將指向數組的指標,作為參數傳遞給函數,改用切片    */    //a := [3]int{89, 90, 91}    //modify(&a) //傳遞數組a的地址,給modify    //fmt.Println(a)    a := [3]int{89, 90, 91}    modify(a[:]) //傳入一個a的切片    fmt.Println(a)}//函數傳遞指標,改變參數的記憶體位址。//func change(val *int) {//    *val = 55//修改數組的值//傳遞指向數組的指標,作為參數,並且對其修改//func modify(arr *[3]int) {//    (*arr)[0] = 90//    //arr[0]=90  //也可以這麼寫,這是上面的簡寫形式(*a)[X]可以寫成a[X]//}//切片方式修改函數//這個方法是修改函數最常用的,最好的方法。。。。。。。。。。。。func modify(sls []int) {    sls[0] = 91}//Go不支援如同C的指標運算

 

相關文章

聯繫我們

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