Chan Array Initialization

Source: Internet
Author: User

package mainimport "fmt"func run() {    chann[0] <- 1}var chann = make([]chan int, 2)func main() {    go run()    obj := <- chann[0]    fmt.Println(obj)}
Out:fatal Error:all Goroutines is asleep-deadlock!

If you watch with Fswatch, you can only find that it is blocked, without this information.

The cause of the problem:

var Chann = make ([]chan int, 2) Simply initializes the Chan array, but each Chan in the array is not initialized with a value of nil. It is not possible to write or read data in the channel variable at this time.

The correct initialization method:

var int {   int      ), int), int),     int),int),}  var chans [5int      for I: = range Chans {   int)}

  

 

Chan Array Initialization

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.