The source code to convert the bidirectional channel into the unidirectional channel is given below. The given program is compiled and executed successfully.
// Golang program to convert the bidirectional channel
// into the unidirectional channel
package main
import "fmt"
func ConvertToUnidirection(uniCh chan<- string) {
uniCh <- "Hello World"
// Inside the ConvertToUnidirection() function
// channel is unidirectional.
// Below statement will generate error
// fmt.Println(<-uniCh)
}
func main() {
// Create a bidirection channel
msg := make(chan string)
go ConvertToUnidirection(msg)
// Outside the ConvertToUnidirection() function
// channel is bidirectional.
fmt.Println(<-msg)
}
Output:
Hello World
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 a bidirectional channel, and then we created a user-defined function ConvertToUnidirection() that converts a bidirectional channel into a unidirectional channel.
Program/Source Code:
The source code to convert the bidirectional channel into the unidirectional channel is given below. The given program is compiled and executed successfully.
Output:
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 a bidirectional channel, and then we created a user-defined function ConvertToUnidirection() that converts a bidirectional channel into a unidirectional channel.
need an explanation for this answer? contact us directly to get an explanation for this answer