摘要:
原文:https://www.jianshu.com/p/9aefa9ddecb9 先看一看func 的基本构成元素 func (p myType ) funcName ( a, b int , c string ) ( r , s int ) { return } 其中: 关键字———func / 阅读全文
摘要:
原文:https://www.cnblogs.com/ludundun/p/16998752.html package main import "fmt" // Golang中的结构体详解 type newInt int // 自定义类型 type myInt = int // 类型别名 type 阅读全文