缓冲区查找字符 效率对比 太意外了!!

TimeSpan ts1 = Process.GetCurrentProcess().TotalProcessorTime;
            int index;
            for (int i = 0; i < 10000000; i++)
            {
                index = FireDatasource.Public.FindChar(content, '#');
            }
            TimeSpan ts2 = Process.GetCurrentProcess().TotalProcessorTime;


            Console.WriteLine((ts2 - ts1).TotalMilliseconds);


            //int tint = -1;


            ts1 = Process.GetCurrentProcess().TotalProcessorTime;
            for (int i = 0; i < 10000000; i++)
            {
                index = Array.IndexOf(content, '#');
            }


            ts2 = Process.GetCurrentProcess().TotalProcessorTime;


            Console.WriteLine((ts2 - ts1).TotalMilliseconds);


            
            ts1 = Process.GetCurrentProcess().TotalProcessorTime;
            for (int i = 0; i < 10000000; i++)
            {
                string Str = System.Text.Encoding.ASCII.GetString(content);
                index = Str.IndexOf('#');
            }


            ts2 = Process.GetCurrentProcess().TotalProcessorTime;


            Console.WriteLine((ts2 - ts1).TotalMilliseconds);


            Console.ReadLine();


其中FindChar使用系统函数

 //extern void *memchr(void *buf, char ch, unsigned int count);
        [DllImport("msvcrt.dll", EntryPoint = "memchr", CallingConvention = CallingConvention.Cdecl, SetLastError = false)]
        static extern IntPtr MemChr(byte[] dest, char src, UIntPtr count);


        public static  int FindChar(byte[] arary, char ch)
        {
            GCHandle hObject = GCHandle.Alloc(arary, GCHandleType.Pinned);
            IntPtr pObject = hObject.AddrOfPinnedObject();
            IntPtr aIP = MemChr(arary, ch, new UIntPtr((uint)arary.Length));


            if (hObject.IsAllocated)
                hObject.Free();


            if( IntPtr.Zero  == aIP )
                return -1;
            return (aIP.ToInt32() - pObject.ToInt32());
        }



测试结果:

6250
16781.25
953.125

C#对字节数组的操作效率实在不敢恭维啊!! 

看来条件允许的情况下,还是要用String来操作,即使复制一次,效率居然高很多。



 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值