标签:int fun 函数 out sleep 函数名 并发编程 pre 执行函数
协程 轻量级,通过goroutine实现协程package main
import (
"fmt"
"time"
)
func testRoutine() {
fmt.Println("this is one routine!!!")
}
func main() {
//执行协程
go testRoutine()
time.Sleep(1)
}
//协程与线程的关系
标签:int fun 函数 out sleep 函数名 并发编程 pre 执行函数
原文地址:http://blog.51cto.com/huwho/2307638