In this program, we will create abuffered channel and pass the channel into a user-defined function. Here, we will send and receive the item from the channel and print it on the console screen.
The source code to pass the buffered channel into a user-defined function is given below. The given program is compiled and executed successfully.
// Golang program to pass buffered channel
// into a user-defined function
package main
import "fmt"
func WriteCountryNames(countyNames chan string) {
//Send country names to buffered channel.
countyNames <- "India"
countyNames <- "USA"
countyNames <- "UK"
close(countyNames)
}
func main() {
//buffered channel
countyNames := make(chan string, 3)
go WriteCountryNames(countyNames)
//Receive country names from buffered channel.
fmt.Println(<-countyNames)
fmt.Println(<-countyNames)
fmt.Println(<-countyNames)
}
Output:
India
USA
UK
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 above code, we created a user-defined function WriteCountryNames() that accepts the channel as an argument and here we send country names to the channel.
In the main() function, we created a buffered channel countryNames using the make() function by specifying the type of item and size of the channel. Then we called WriteCountryNames() function to send county names to the channel. After that, we printed the county names on the console screen.
Program/Source Code:
The source code to pass the buffered channel into a user-defined function 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 above code, we created a user-defined function WriteCountryNames() that accepts the channel as an argument and here we send country names to the channel.
In the main() function, we created a buffered channel countryNames using the make() function by specifying the type of item and size of the channel. Then we called WriteCountryNames() function to send county names to the channel. After that, we printed the county names on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer