We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe8380 commit 38eeab3Copy full SHA for 38eeab3
README.md
@@ -928,24 +928,6 @@
928
var slice1 []type = make([]type, len,cap)// 使用make()函数来创建切片
929
```
930
931
- ```go
932
- package main
933
-
934
- import "fmt"
935
936
- func main() {
937
- var slice1 []int = make([]int, 10)
938
- for i := 0; i < len(slice1); i++ {
939
- slice1[i] = 5 * i
940
- }
941
942
- fmt.Printf("Slice at %d is %d\n", i, slice1[i])
943
944
- fmt.Printf("\nThe length of slice1 is %d\n", len(slice1))
945
- fmt.Printf("The capacity of slice1 is %d\n", cap(slice1))
946
947
- ```
948
949
- [x] 将切片传递给函数:函数的参数为切片
950
951
```go
0 commit comments