小错误和语言问题 (#276)

* Update 07.3.md

* Update 07.3.md

* Update 07.6.md

* fix few problems

* Update 10.6 and 10.8

* Update 11.6 and 11.7
This commit is contained in:
王耀
2016-08-27 01:56:59 +08:00
committed by 无闻
parent 6e9d78dac9
commit a21e30a4a8
4 changed files with 4 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ func main() {
- 接收者是值的方法可以通过指针调用,因为指针会首先被解引用
- 接收者是指针的方法不可以通过值调用,因为存储在接口中的值没有地址
将一个值赋值给一个接口赋值时,编译器会确保所有可能的接口方法都可以在此值上被调用,因此不正确的赋值在编译期就会失败。
将一个值赋值给一个接口时,编译器会确保所有可能的接口方法都可以在此值上被调用,因此不正确的赋值在编译期就会失败。
**译注**