13、结构体常量 Struct Literals

结构体常量表示根据它列出字段新分配的结构体的值。

你可以通过冒号“:”列出部分值,并且字段的名称也不需要。

特殊的前缀符号&,表示结构体常量的指针。

 1 package main
2
3 import "fmt"
4
5 type Vertex struct {
6 X, Y int
7 }
8
9 var (
10 p = Vertex{1, 2} // has type Vertex
11 q = &Vertex{1, 2} // has type *Vertex
12 r = Vertex{X: 1} // Y:0 is implicit
13 s = Vertex{} // X:0 and Y:0
14 )
15
16 func main() {
17 fmt.Println(p, q, r, s)
18 }
{1 2} &{1 2} {1 0} {0 0}



你可能感兴趣的:(13、结构体常量 Struct Literals)