golang misc

	ch1 := make(chan string)

	fmt.Println("1@", time.Now())
	for {
		select {
		case <-ch1:
			fmt.Println("2@", time.Now())
		case <-time.After(time.Second * 3):
			fmt.Println("3@", time.Now())
			return
		}
	}

1@ 2015-03-19 15:21:45.0547549 +0800 CST

2@ 2015-03-19 15:21:46.0548121 +0800 CST

3@ 2015-03-19 15:21:49.0569838 +0800 CST

 

	ch := make(chan string)
	select {
	case ch <- "hello":
		fmt.Println("send")
	default:
		fmt.Println("nothing")
	}

 nothing

本文来自:ITEYE博客

感谢作者:simplehappy

查看原文:golang misc

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。