首頁  >  文章  >  後端開發  >  嵌入結構體或結構體指標:何時以及為何?

嵌入結構體或結構體指標:何時以及為何?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-01 02:51:27625瀏覽

Embed a Struct or a Pointer to a Struct: When and Why?

將結構體或指針嵌入結構體作為指針:主要區別

當結構體類型 A充當僅具有指標接收器和建構函數的指標時傳回A,嵌入另一個結構體類型B有兩種選擇:直接嵌入B或嵌入B.

零值差異:

零值嵌入B 的A 與嵌入*B 的不同。當直接嵌入B 時,A 的零值包含B 的嵌入零值,無需初始化即可安全使用:

<code class="go">type B struct {
    X int
}

func (b *B) Print() { fmt.Printf("%d\n", b.X) }

type AObj struct {
    B
}

var aObj AObj
aObj.Print() // prints 0</code>

但是,在APtr 的零值中嵌入nil 指標值將導致無法直接使用:

<code class="go">type APtr struct {
    *B
}

var aPtr APtr
aPtr.Print() // panics</code>

物件複製:

物件如預期複製。建立新的AObj 會複製嵌入的B:

<code class="go">aObj2 := aObj
aObj.X = 1
aObj2.Print() // prints 0, due to the copy</code>

相反,建立新的APtr 會複製*B,保留共享的具體物件:

<code class="go">aPtr.B = &B{}
aPtr2 := aPtr
aPtr.X = 1
aPtr2.Print() // prints 1, due to shared reference</code>

範例:

https://play.golang.org/p/XmOgegwVFeE提供了一個可運行的範例來演示這些差異。

以上是嵌入結構體或結構體指標:何時以及為何?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn