1. 程式人生 > >使用channel實現goroutine

使用channel實現goroutine

使用channel實現goroutine

package main

import (
    "fmt"
    "time"
)

var message = make(chan string)

//往channel中輸入資訊
func sample1()  {
    message <- "hello gorotine."
}

//消費channel中的資訊
func sample2()  {
    str := <- message
    str = str + " run fast,run the world."
    message <- str

}

func main()  {
    go sample1()
    go sample2()
    time.Sleep(time.Second)
    fmt.Println(<-message)
    fmt.Println("message")

}