Skip to content

Commit

Permalink
Update 07.0.md (unknwon#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
llussy authored Apr 12, 2022
1 parent df3aaf7 commit 5b6d984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eBook/07.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 7.0 数组与切片

这章我们开始剖析 **容器**,它是可以包含大量条目(item)的数据结构,例如数组、切片和 map。从这看到 Go 明显受到 Python 的影响。
这章我们开始剖析 **集合**,它是可以包含大量条目(item)的数据结构,例如数组、切片和 map。从这看到 Go 明显受到 Python 的影响。

`[]` 符号标识的数组类型几乎在所有的编程语言中都是一个基本主力。Go 语言中的数组也是类似的,只是有一些特点。Go 没有 C 那么灵活,但是拥有切片(slice)类型。这是一种建立在 Go 语言数组类型之上的抽象,要想理解切片我们必须先理解数组。数组有特定的用处,但是却有一些呆板,所以在 Go 语言的代码里并不是特别常见。相对的,切片确实随处可见的。它们构建在数组之上并且提供更强大的能力和便捷。

Expand Down

0 comments on commit 5b6d984

Please sign in to comment.