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

Go协程

时间:2019-12-13 19:51:05      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:pre   time   test   com   and   image   协程   http   div   

什么是Go协程?

Go 协程是与其他函数或方法一起并发运行的函数或方法。Go 协程可以看作是轻量级线程。

与线程相比,创建一个 Go 协程的成本很小。因此在 Go 应用中,常常会看到有数以千计的 Go 协程并发地运行。

package main

import (
    "fmt"
    "time"
)

func test() {
    fmt.Println("hello word")
}

func main() {
    go test()
    time.Sleep(time.Second*2)
}

 

技术图片

Go协程

标签:pre   time   test   com   and   image   协程   http   div   

原文地址:https://www.cnblogs.com/xiongying4/p/12036781.html

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