本文主要研究一下golang中的包init
package pkg1 import ( "fmt" ) func init() { fmt.Println("pkg1 init1") } func init() { fmt.Println("pkg1 init2") } func Hello() { fmt.Println("pkg1 hello") }
package pkg2 import ( "fmt" "init-demo/pkg3" ) func init() { fmt.Println("pkg2 init1") } func init() { fmt.Println("pkg2 init2") } func World() { fmt.Println("pkg2 world") pkg3.Greet() }
package pkg3 import "fmt" func init() { fmt.Println("pkg3 init1") } func init() { fmt.Println("pkg3 init2") } func Greet() { fmt.Println("pkg3 greet") }
package main import ( "fmt" "init-demo/pkg1" "init-demo/pkg2" "time" ) func init() { fmt.Println("main init1") } func init() { go func() { fmt.Println("main init2 with go routine") time.Sleep(time.Second * 5) fmt.Println("main init2 finish sleep") }() } func init() { fmt.Println("main init3") } func main() { fmt.Println("main") pkg2.World() pkg1.Hello() time.Sleep(time.Second * 10) }
pkg1 init1 pkg1 init2 pkg3 init1 pkg3 init2 pkg2 init1 pkg2 init2 main init1 main init3 main pkg2 world pkg3 greet pkg1 hello main init2 with go routine main init2 finish sleep