“Go Goroutine” Ответ

goroutine

// just a function (which can be later started as a goroutine)
func doStuff(s string) {
}

func main() {
    // using a named function in a goroutine
    go doStuff("foobar")

    // using an anonymous inner function in a goroutine
    go func (x int) {
        // function body goes here
    }(42)
}
DevLorenzo

Go Goroutine

package main
import (
  "fmt"
  "time"
)

// creating a function
func display(message string) {

  fmt.Println(message)
}

func main() {

  // calling goroutine
  go display("Process 1")

  display("Process 2")
}
SAMER SAEID

Ответы похожие на “Go Goroutine”

Смотреть популярные ответы по языку

Смотреть другие языки программирования