Go指標範例


在這個範例中,將展示如何使用指標,並使用2相對應的函式:zerovalzeroptrzeroval()函式有一個int引數,因此引數將通過值傳遞給它。 zeroval將獲得ival的拷貝,它與呼叫函式中的值有所不同。

相反,zeroptr有一個* int引數,這意味著它需要一個int指標。函式體中的* iptr程式碼將指標從儲存器地址解除參照到該地址處的當前值。將值分配給取消參照的指標會更改參照地址處的值。

&i語法獲取了i變數的儲存器地址,即指向i的指標。指標也可以列印。

main函式中zeroval不會改變i的值,但zeroptr會。是因為它有一個對該變數的記憶體地址的參照。

所有的範例程式碼,都放在 F:\worksp\golang 目錄下。安裝Go程式設計環境請參考:/2/23/798.html

pointers.go的完整程式碼如下所示 -

package main

import "fmt"

// We'll show how pointers work in contrast to values with
// 2 functions: `zeroval` and `zeroptr`. `zeroval` has an
// `int` parameter, so arguments will be passed to it by
// value. `zeroval` will get a copy of `ival` distinct
// from the one in the calling function.
func zeroval(ival int) {
    ival = 0
}

// `zeroptr` in contrast has an `*int` parameter, meaning
// that it takes an `int` pointer. The `*iptr` code in the
// function body then _dereferences_ the pointer from its
// memory address to the current value at that address.
// Assigning a value to a dereferenced pointer changes the
// value at the referenced address.
func zeroptr(iptr *int) {
    *iptr = 0
}

func main() {
    i := 1
    fmt.Println("initial:", i)

    zeroval(i)
    fmt.Println("zeroval:", i)

    // The `&i` syntax gives the memory address of `i`,
    // i.e. a pointer to `i`.
    zeroptr(&i)
    fmt.Println("zeroptr:", i)

    // Pointers can be printed too.
    fmt.Println("pointer:", &i)
}

執行上面程式碼,將得到以下輸出結果 -

F:\worksp\golang>go run pointers.go
initial: 1
zeroval: 1
zeroptr: 0
pointer: 0xc04203c1c0