鉴于这个游乐场:
package main
import "fmt"
func main() {
go oneFunc().anotherFunc()
}
func oneFunc() something {
fmt.Println("oneFunc")
return something{}
}
type something struct{}
func (s something) anotherFunc() {
fmt.Println("anotherFunc")
}
为什么是输出:
一个功能
并且“anotherFunc”从不打印?
呼啦一阵风
慕盖茨4494581
相关分类