Q:

Golang program to demonstrate the channel with select statement

belongs to collection: Golang Channels Programs

0

In this program, we will create two channels to store Boolean value. Here, we will send Boolean values to channels in user-defined function and then received values using select statement.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the channel with a select statement is given below. The given program is compiled and executed successfully.

// Golang program to demonstrate the channel
// with select statement

package main

import "fmt"

func SetChannels(chnl1 chan bool, chnl2 chan bool) {
	chnl1 <- true
	chnl1 <- false
}

func main() {

	channel1 := make(chan bool)
	channel2 := make(chan bool)

	go SetChannels(channel1, channel2)

	for i := 0; i < 2; i++ {
		select {
		case val1 := <-channel1:
			fmt.Println("Received value: ", val1)
		case val2 := <-channel2:
			fmt.Println("Received value: ", val2)
		}
	}
}

Output:

Received value:  true
Received value:  false

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package to formatting related functions.

In the main() function, we created two channels. Then we send values to channels in SetChannels() function. After that, we received and printed values of channels on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang program to demonstrate the channel with swi... >>
<< Golang program to check the channel is empty or no...