Q:

Golang program to print the type of channel

belongs to collection: Golang Channels Programs

0

In this program, we will create two unidirectional channels and then print the type of channel on the console screen.

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 print the type of channel is given below. The given program is compiled and executed successfully.

// Golang program to print the type of channel

package main

import "fmt"

func main() {
	//Channel with send only.
	msg1 := make(chan<- string)

	//Channel with receive only.
	msg2 := make(<-chan string)

	fmt.Printf("%T", msg1)
	fmt.Printf("\n%T", msg2)
	fmt.Println("\nProgram finished")
}

Output:

chan<- string
<-chan string
Program finished

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 unidirectional channels and then printed types 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 convert bidirectional channel in... >>
<< Golang program to create the unidirectional channe...