文章目录
前言
在学习Go的时候最开始对struct跟interface有点弄混,打算写个文章📝一下
一、Struct
A struct is a collection of fields.
也就是类似于定义一个类,类中的各种属性
type Vertex struct {
X int
Y int
}
二、Inteface
An interface type is defined as a set of method signatures.
A value of interface type can hold any value that implements those methods.
里面是方法signatures的集合
type