Logo

dev-resources.site

for different kinds of informations.

Concurrency trong Go: Tạo goroutine

Published at
11/27/2020
Categories
go
concurrency
goroutine
techmaster
Author
handuy
Author
6 person written this
handuy
open
Concurrency trong Go: Tạo goroutine

Video hướng dẫn cách tạo goroutine với từ khóa go:

Tham khảo code được sử dụng trong bài:

package main

import (
    "fmt"
)

func printNumber() {
    for i := 0; i <= 100; i++ {
        fmt.Printf("%d ", i)
    }
}

func printChar() {
    for i := 'A'; i < 'A'+26; i++ {
        fmt.Printf("%c ", i)
    }
}

func main() {
    go printNumber()
    go printChar()
}

Enter fullscreen mode Exit fullscreen mode

Featured ones: