为什么我不能在golang中复制一个带有拷贝的片段?

前端之家收集整理的这篇文章主要介绍了为什么我不能在golang中复制一个带有拷贝的片段?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要复制一个片段,阅读文档中有一个 copy功能在我的支配。

The copy built-in function copies elements from a source slice into a
destination slice. (As a special case,it also will copy bytes from a
string to a slice of bytes.) The source and destination may overlap.
Copy returns the number of elements copied,which will be the minimum
of len(src) and len(dst).@H_404_7@

但是当我做@H_404_7@

arr := []int{1,2,3}
tmp := []int{}
copy(tmp,arr)
fmt.Println(tmp)
fmt.Println(arr)

我的tmp是空的,就像以前一样(我甚至尝试使用arr,tmp):@H_404_7@

[]
[1 2 3]

你可以在playground上查看。那么为什么我不能复制一个片?@H_404_7@

内置的 copy(dst,src)拷贝min(len(dst),len(src))元素。

所以如果你的dst是空的(len(dst)== 0),没有任何东西被复制。@H_404_7@

尝试tmp:= make([] int,len(arr))(Go Playground):@H_404_7@

arr := []int{1,3}
tmp := make([]int,len(arr))
copy(tmp,arr)
fmt.Println(tmp)
fmt.Println(arr)

输出(如预期):@H_404_7@

[1 2 3]
[1 2 3]

不幸的是,这没有记录在builtin包中,但在Go Language Specification: Appending to and copying slices中有记录:@H_404_7@

The number of elements copied is the minimum of len(src) and len(dst).@H_404_7@

编辑:@H_404_7@

最后,copy()的文档已经被更新,现在它包含了这样一个事实:源和目的地的最小长度将被复制:@H_404_7@

Copy returns the number of elements copied,which will be the minimum of len(src) and len(dst).@H_404_7@

原文链接:https://www.f2er.com/go/187218.html

猜你在找的Go相关文章