關於Golang struct{}{}用法和注意事項

ljq發表於2021-08-11

引自ljq@GitHub

  • struct {}
    struct {}是一個無元素的結構體型別,通常在沒有資訊儲存時使用。
    優點:不需要記憶體來儲存struct{}型別的值。
  • struct{}{}
    struct{}{}是一個複合字面量,它構造了一個struct{}型別的值,該值也是空。
  • 兩個structt{}{}地址相等
package main

import "fmt"

type idBval struct {
    Id int
}

func main() {
    idA := struct{}{}
    fmt.Printf("idA: %T and %v \n\n", idA, idA)

    idB := idBval{
        1,
    }
    idB.Id = 2
    fmt.Printf("idB: %T and %v \n\n", idB, idB)

    idC := struct {
        Id int
    }{
        1,
    }
    fmt.Printf("idC: %T and %v \n\n", idC, idC)

    mapD := make(map[string]struct{})
    mapD["mapD"] = struct{}{}
    _, ok := mapD["mapD"]
    fmt.Printf("mapD['mapD'] is %v \n\n", ok)

    sliceE := make([]interface{}, 2)
    sliceE[0] = 1
    sliceE[1] = struct{}{}
    fmt.Printf("idE: %T and %v \n\n", sliceE, sliceE)

}

Output:


idA: struct {} and {} 

idB: main.idBval and {2} 

idC: struct { Id int } and {1} 

mapD['mapD'] is true 

idE: []interface {} and [1 {}] 

引自ljq@GitHub

本作品採用《CC 協議》,轉載必須註明作者和本文連結
ljq@Github

相關文章