摘要:
Golang 接口 案例 //定义一个接口 type Usb interface { start() stop() sum(int, int) int } type phone struct { } //实现接口方法 func (p phone) start() { fmt.Println("imp 阅读全文
摘要:
Golang 继承 案例引入 type Person struct { Name string Age int } //Go继承使用匿名嵌套 type Student struct { Person sNo int } func (person *Person) say() { fmt.Printl 阅读全文
摘要:
Golang 方法 定义 func (recevier stuctType)identifier()(){} 方法只能被structType的实例调用 As Follow type Monster struct { Name string Age int skill string } //Say方法 阅读全文
摘要:
Golang 结构体 定义 **注意!!!**Go中结构体是值类型, 不同于Java中的类是引用类型 type typeName struct{//如果结构体名为小写就表示只能被当前包使用, 反之可以被所有包使用 filed type //字段 filed type //指针, slice 和map 阅读全文