编程论坛
注册
登录
编程论坛
→
Golang论坛
请讲解一下加红部分是什么意思?
xnattack
发布于 2015-10-12 17:36, 5217 次点击
程序代码:
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
v := Vertex{1, 2}
v.X = 4
fmt.Println(v)
}
1 回复
#2
fulltimelink
2020-05-03 17:21
没看到哪个标红了。。。
整体就是结构体定义,初始化赋值,更改赋值,然后输出
1