이 문서의 예에서는 C#이 포인터를 통해 빠른 복사를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
// fastcopy.cs // 编译时使用:/unsafe using System; class Test { // unsafe 关键字允许在下列 // 方法中使用指针: static unsafe void Copy(byte[] src, int srcIndex, byte[] dst, int dstIndex, int count) { if (src == null || srcIndex < 0 || dst == null || dstIndex < 0 || count < 0) { throw new ArgumentException(); } int srcLen = src.Length; int dstLen = dst.Length; if (srcLen - srcIndex < count || dstLen - dstIndex < count) { throw new ArgumentException(); } // 以下固定语句固定 // src 对象和 dst 对象在内存中的位置,以使这两个对象 // 不会被垃圾回收移动。 fixed (byte* pSrc = src, pDst = dst) { byte* ps = pSrc; byte* pd = pDst; // 以 4 个字节的块为单位循环计数,一次复制 // 一个整数(4 个字节): for (int n = 0; n < count / 4; n++) { *((int*)pd) = *((int*)ps); pd += 4; ps += 4; } // 移动未以 4 个字节的块移动的所有字节, // 从而完成复制: for (int n = 0; n < count % 4; n++) { *pd = *ps; pd++; ps++; } } } static void Main(string[] args) { byte[] a = new byte[100]; byte[] b = new byte[100]; for (int i = 0; i < 100; ++i) a[i] = (byte)i; Copy(a, 0, b, 0, 100); Console.WriteLine("The first 10 elements are:"); for (int i = 0; i < 10; ++i) Console.Write(b[i] + " "); Console.WriteLine("\n"); } }
이 글이 모든 분들의 C# 프로그래밍에 도움이 되기를 바랍니다.
포인터를 통해 빠르게 복사하는 방법에 대한 더 많은 C# 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!