This commit is contained in:
Unknwon
2015-09-10 18:08:40 -04:00
parent 9fa55f9c38
commit 2a9a616c49
4 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@
## 翻译进度 ## 翻译进度
11.1 [接口是什么](eBook/11.1.md) 11.3 [类型断言:如何检测和转换接口变量的类型](eBook/11.3.md)
## 支持本书 ## 支持本书

View File

@@ -28,4 +28,4 @@ Golang 编程245386165
|更新日期 |更新内容 |更新日期 |更新内容
|----------|------------------ |----------|------------------
|2015-09-8|11.1 接口是什么 |2015-09-10|11.3 类型断言:如何检测和转换接口变量的类型

2
TOC.md
View File

@@ -90,3 +90,5 @@
- 10.8 [垃圾回收和 SetFinalizer](eBook/10.8.md) - 10.8 [垃圾回收和 SetFinalizer](eBook/10.8.md)
- 第11章[接口interface与反射reflection](eBook/11.0.md) - 第11章[接口interface与反射reflection](eBook/11.0.md)
- 11.1 [接口是什么](eBook/11.1.md) - 11.1 [接口是什么](eBook/11.1.md)
- 11.2 [接口嵌套接口](eBook/11.2.md)
- 11.3 [类型断言:如何检测和转换接口变量的类型](eBook/11.3.md)

View File

@@ -30,8 +30,6 @@ if _, ok := varI.(T); ok {
} }
``` ```
TODO ??In this form shadowing the variable varI by giving varI and v the same name is sometimes done.
示例 11.4 type_interfaces.go 示例 11.4 type_interfaces.go
```go ```go