A tour of Go Channels

Source: Internet
Author: User

Channels are a typed conducting it through which you can send and receive values with the channel operator,<-.

ch <- v    // Send v to channel ch.v := <-ch  // Receive from ch, and           // assign value to v.

(The data flows in the direction of the arrow .)

Like maps and slices, channels must be created before use:

ch := make(chan int)

By default, sends and ES block until the other side is ready. This allows goroutines to synchronize without explicit locks or condition variables.

package mainimport "fmt"func sum(a []int, c chan int) {    sum := 0    for _, v := range a {        sum += v    }    c <- sum //send sum to c}func main() {    a := []int{7, 2, 8, -9, 4, 0}    c := make(chan int)    go sum(a[:len(a)/2], c)    go sum(a[len(a)/2:], c)    x, y := <-c,  <-c     fmt.Println(x, y, x + y)}

 

A tour of Go Channels

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.