type Get func(serviceName string) interface{}
type ServiceConstructor func(get Get) interface{}
> 类似`C`语言的函数指针
~~~c
typeof int(*func) (int a);
~~~
~~~go
type Func func(a int) int
~~~
#4
更多评论
这个能看懂吗
```go
type Get string
```
这个能看懂吗
```go
func(serviceName string) interface{}
```
那这样不就能看懂了
```go
type Get func(serviceName string) interface{}
```
#2