标签:pac package 内存 元素 nbsp fun 切片 test []
copy 可以将后面的 第2个切片的元素赋值copy 到第一个切片中
package main; import "fmt" func test () { s1 := []int{1,2,3,4,5} s2 := make([]int, 10) fmt.Println(s2); copy(s2, s1) fmt.Println(s2); } func main () { test() }
输出:
[0 0 0 0 0 0 0 0 0 0] [1 2 3 4 5 0 0 0 0 0]
copy 不会新建新的内存空间,由它原来的切片长度决定
标签:pac package 内存 元素 nbsp fun 切片 test []
原文地址:https://www.cnblogs.com/guangzhou11/p/10850249.html