在Golang中的struct中运算符=和:=

时间:2017-07-22 09:02:12

标签: go colon-equals

为什么这不起作用?它适用于:=运算符,但为什么我们不能在这里使用=运算符?

package main

import "fmt"

type Vertex struct {
    X, Y int
}


func main() {
v1 = Vertex{1, 2}  // has type Vertex
v2 = Vertex{X: 1}  // Y:0 is implicit

v3 = Vertex{}      // X:0 and Y:0
p  = &Vertex{1, 2} // has type *Vertex
fmt.Println(v1, p, v2, v3)
}

2 个答案:

答案 0 :(得分:2)

您可以通过多种方式创建新Vertex类型的实例:

1:var c Circle您可以使用.运算符访问字段:

package main

import "fmt"

type Vertex struct {
    X, Y int
}
func main() {
    var f Vertex
    f.X = 1
    f.Y = 2
    fmt.Println(f) // should be {1, 2}
}

2:使用:=运算符

package main

import "fmt"

type Vertex struct {
    X, Y int
}
func main() {
    f := Vertex{1, 2}
    fmt.Println(f) // should be {1, 2}
}

答案 1 :(得分:0)

:= 将初始化并同时声明变量。这是为了简单。 请不要混淆输入语言中的=和:=。 1. = 将值分配给先前定义的变量。 2.另一方面,:= 同时声明并初始化变量。

另外,@ Burdy给出了 = := 的简单示例。

希望这个答案可以帮助你并清除你的怀疑/困惑。