Golang 中的类型
Contents
类型分类
1. 值类型和指针类型
- 值类型: 变量之间传递的的是值的拷贝
- 指针类型: 变量之间传递的是指针的拷贝
1. 基础类型
|
|
2.复合类型
-
container
- arrary
- slice
- map
-
struct
-
pointer
-
channel
-
function
-
interface
3. 类型的声明(type declaration)
1. type definitions vs type alias
|
|
2. type alias
|
|
3. definition vs alias
- definition:
- create a new type
- alias
- not create a new type
use case: Representing enums in go
- enum
|
|
- add function
|
|