如何编写一个高效的Go实现内置函数copy的代码?

huangapple go评论84阅读模式
英文:

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) &lt; len(b)) {
        length = len(a)
    } else {
        length = len(b)
    }

   for i := 0; i &lt; length; i++ {
        a[i] = b[i]
   }

   return length
}

huangapple
  • 本文由 发表于 2013年9月29日 19:04:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/19077311.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定