Skip to content

Commit 38eeab3

Browse files
committed
Update README.md
1 parent 8fe8380 commit 38eeab3

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

README.md

-18
Original file line numberDiff line numberDiff line change
@@ -928,24 +928,6 @@
928928
var slice1 []type = make([]type, len,cap)// 使用make()函数来创建切片
929929
```
930930

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-
for i := 0; i < len(slice1); i++ {
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-
949931
- [x] 将切片传递给函数:函数的参数为切片
950932

951933
```go

0 commit comments

Comments
 (0)