go types
Contents
comparale;
-
what? use “==” to compare
-
comparable:
- basic type
- channel: equal when same reference;
- arrays: if elements are comparable;
- struct: if fields are comparable;
- interface:
if: dymanic types are comparable OR: panic,comparable uncomparable types;
-
uncomparable:
- map;
- function
- slice
-
how to compare funciton, slice, map;
reflect.Deepequal
- slice equal when : all element ==
- map: keys,values are ==;
- function: both nil
defer
what
- what? a function will be called at last;
- feature?
- stack: FILO;
how
-
linked list node: {deferF *func,parameters interface{}}
- stack structure;
- copy parameters immediately
-
case
1 2 3 4 5 6 7 8
func main(){ a := 1 defer fmt.Println("1",s) a++ defer func(){ fmt.Println("2",a) } }
output: “2”, 2; “1”, 1
- defer 基于链表形成栈结构,先进后出
- defer参数会理解拷贝到defer结构体中,后面的修改不影响,“1”,1
- 非defer参数,不会被拷贝,在defer参数执行的时候获取它的最终值;;
use case;
- clean action:
- close i/o, channel;
- cancel Context
type conversion;
int <-> float;
|
|
type assertion
interface{} -> specific type
- get types;
- switch;
1 2 3 4 5 6
switch x.(type){ case int: case string: default: }
- xType:=reflect.TypeOf(x);