go a simple example of channel

The following is a more read-side channel, multiple write end, is also possible

/ ** 
* more routine (write feature writer) while writing data to a channel which, while more routine from above the channel (reader reading function) which read data 
* 
* significance of this example, multiple data sources a performer, a plurality of tasks, the task to speed up the processing speed 
* 
* 
* 
* / 
Package main 


Import ( 
	"log" 
	"Time" 
) 

FUNC main () { 

	var = shareChan the make (int Chan,. 3) 

	Go FUNC () { 
		shareChan // <-1 
		// shareChan <-2 
		// shareChan <-3 
		// Close (shareChan) 
		Timer: = time.NewTicker (* time.Second. 3) // Create a the Timer 
		for { 
			SELECT { 
			Case <- Timer .C: 
				shareChan <-. 7 
			} 
		} 
	} ()
 
	Go FUNC () {
		ShareChan // <-4 
	// Case A: = <-shareChan:
		ShareChan // <-5 
		// shareChan <-6 
		
		Timer: = time.NewTicker (* time.Second. 1) // Create a the Timer 
		for { 
			SELECT { 
			Case <- timer.c: 
				shareChan <- 2 
			// Case <- time.After (10 * time.Second): // this code never be reached? ? strange! ! 
			ShareChan // <-. 6 

			//} 
		} 
		log.Println ( "mmmmmmmmmmmmmmmmmmmmm") 
		for { 
			log.Println ( "TT") 
			SELECT { 
			Case <- time.After (10 * time.Second): 
				shareChan <-. 6 

			} 
			} 
		} 

		// Close (shareChan) 
	} () 

	// for { 
	// SELECT { 
	// log.Println (A) 
	//} 
	//}
	go func() {
		for i := range shareChan {
			log.Println("r1", i)
			if (i == 6) {
				close(shareChan)
			}
		}
	}()

	for i := range shareChan {
		log.Println("r2", i)
		if (i == 6) {
			
		}
	}
	
}

  

 

1 illustrates a reflection

Before using reflection, this text The Laws of Reflection reading. Many Online Chinese translation version, you can search for reading.

Before beginning a specific space, look at the reflection three principles:

  • Reflection goes from interface value to reflection object.
  • Reflection goes from reflection object to interface value.
  • To modify a reflection object, the value must be settable.

In the three principles, there are two key words  interface value with  reflection object. A bit difficult to understand, you might draw a diagram understand.

 
reflect.png

先看一下什么是反射对象 reflection object? 反射对象有很多,但是其中最关键的两个反射对象reflection object是:reflect.Typereflect.Value.直白一点,就是对变量类型的抽象定义类,也可以说是变量的元信息的类定义.

再来,为什么是接口变量值 interface value, 不是变量值 variable value 或是对象值 object value 呢?因为后两者均不具备广泛性。在 Go 语言中,空接口 interface{}是可以作为一切类型值的通用类型使用。所以这里的接口值 interface value 可以理解为空接口变量值 interface{} value

结合图示,将反射三原则归纳成一句话:

通过反射可以实现反射对象 reflection object接口变量值 interface value之间的相互推导与转化, 如果通过反射修改对象变量的值,前提是对象变量本身是可修改的。

2. 反射的应用

在程序开发中是否需要使用反射功能,判断标准很简单,即是否需要用到变量的类型信息。这点不难判断,如何合理的使用反射才是难点。因为,反射不同于普通的功能函数,它对程序的性能是有损耗的,需要尽量避免在高频操作中使用反射。

举几个反射应用的场景例子:

2.1 判断未知对象是否实现具体接口

通常情况下,判断未知对象是否实现具体接口很简单,直接通过 变量名.(接口名) 类型验证的方式就可以判断。但是有例外,即框架代码实现中检查调用代码的情况。因为框架代码先实现,调用代码后实现,也就无法在框架代码中通过简单额类型验证的方式进行验证。

看看 grpc 的服务端注册接口就明白了。

grpcServer := grpc.NewServer()
// 服务端实现注册
pb.RegisterRouteGuideServer(grpcServer, &routeGuideServer{})

当注册的实现没有实现所有的服务接口时,程序就会报错。它是如何做的,可以直接查看pb.RegisterRouteGuideServer的实现代码。这里简单的写一段代码,原理相同:


//目标接口定义
type Foo interface {
    Bar(int)
}
  
dst := (*Foo)(nil)
dstType := reflect.TypeOf(dst).Elem()

//验证未知变量 src 是否实现 Foo 目标接口
srcType := reflect.TypeOf(src)
if !srcType.Implements(dstType) {
        log.Fatalf("type %v that does not satisfy %v", srcType, dstType)
}

这也是grpc框架的基础实现,因为这段代码通常会是在程序的启动阶段所以对于程序的性能而言没有任何影响。

2.2 读取结构体字段属性标签

通常定义一个待JSON解析的结构体时,会对结构体中具体的字段属性进行tag标签设置,通过tag的辅助信息对应具体JSON字符串对应的字段名。JSON解析就不提供例子了,而且通常JSON解析代码会作用于请求响应阶段,并非反射的最佳场景,但是业务上又不得不这么做。

这里我要引用另外一个利用结构体字段属性标签做反射的例子,也是我认为最完美诠释反射的例子,真的非常值得推荐。这个例子出现在开源项目github.com/jaegertracing/jaeger-lib中。

用过 prometheus的同学都知道,metric探测标量是需要通过以下过程定义并注册的:

Guess you like

Origin www.cnblogs.com/oxspirt/p/12387869.html