英文:
How to write an efficient Go implementation of built-in function copy?
问题
我有两个字节缓冲区 var a, b []byte
,我正在寻找一个替代 Go 的内置 copy
函数的方法,用于将一个字节缓冲区的内容复制到另一个缓冲区,最好是纯 Go 实现且效率高。
原因是 copy
函数会导致我的程序崩溃,出现 unexpected fault address
错误,因此我想尝试使用一个非原生的 copy()
替代方法,以确定崩溃是否是由我的程序逻辑引起的。
英文:
I have two byte buffers var a,b []byte
, I am looking for a replacement for Go's built-in copy function to copy from one byte buffer to the other, preferably pure Go implementation and efficiency is important.
The reason is that copy
reliably crashes my program due to unexpected fault address
, therefore I would like to experiment with a non-native copy()
replacement to find out if the crash was caused by my program logics or not.
答案1
得分: 0
为了调试,请使用类似以下的代码:
func myCopy(a, b []byte) int {
var length int
if len(a) < len(b) {
length = len(a)
} else {
length = len(b)
}
for i := 0; i < length; i++ {
a[i] = b[i]
}
return length
}
这段代码用于将字节切片 b
的内容复制到字节切片 a
中,并返回复制的长度。
英文:
For the sake of debugging, use something like this:
func myCopy (a, b []byte) int {
var length int
if (len(a) < len(b)) {
length = len(a)
} else {
length = len(b)
}
for i := 0; i < length; i++ {
a[i] = b[i]
}
return length
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论