Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.MakeChan()函数用于创建具有指定类型和缓冲区大小的新通道。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function takes only two parameters of Type type(typ) and int type (buffer).
Return Value: This function returns the newly created channel.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func MakeChan(typ Type, buffer int) Value
输出:
// Golang program to illustrate
// reflect.MakeChan() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
var val chan int
// create new channel
value := reflect.MakeChan(reflect.Indirect(reflect.ValueOf(&val)).Type(), 0)
fmt.Println("Value :", value)
}
示例 2:
Value : 0xc00005e060
输出:
// Golang program to illustrate
// reflect.MakeChan() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
var val chan string
var strVal reflect.Value = reflect.ValueOf(&val)
indirectStr := reflect.Indirect(strVal)
// create new channel
value := reflect.MakeChan(indirectStr.Type(), 1024)
fmt.Printf("Type : [%v] \nCapacity : [%v]", value.Kind(), value.Cap())
}