码迷,mamicode.com
首页 > 其他好文 > 详细

go channel

时间:2020-06-06 18:45:24      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:string   imp   hello   highlight   nbsp   class   UNC   make   ack   

package main

import (
	"time"
	"fmt"
)

func main()  {

	c := make(chan string)

	go func() {
		time.Sleep(1 * time.Second)
		c <- "hello from chan" // 数据发送到channel中
	}()

	msg := <- c // 阻塞知道受到数据

	fmt.Print(msg) 
}

 

go channel

标签:string   imp   hello   highlight   nbsp   class   UNC   make   ack   

原文地址:https://www.cnblogs.com/php-linux/p/13055628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!