微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 有人可以向我解释这个代码吗?

我正在看这个问题: How to implement multiplication without using multiplication operator in .NET并且实际上有很多乐趣试图想法如何在不使用*的情况下成倍增加.

但是我对这个答案感到很头疼.我不知道这段代码发生了什么.

有人可以向我解释一下吗?

using System;
using System.Runtime.InteropServices;

delegate uint BinaryOp(uint a,uint b);

static class Program
{
    [DllImport("kernel32.dll",SetLastError = true)]
    static extern bool VirtualProtect(
        IntPtr address,IntPtr size,uint protect,out uint oldProtect);

    static void Main()
    {
        var bytes = IntPtr.Size == sizeof(int) ? //32-bit? It's slower BTW
          new byte[] {0x8B,0x44,0x24,0x04,0x0F,0xAF,0x08,0xC3}
        : new byte[] {0x0F,0xCA,0x8B,0xC1,0xC3};
        var handle = GCHandle.Alloc(bytes,GCHandleType.Pinned);
        try
        {
            uint old;
            VirtualProtect(handle.AddrOfPinnedobject(),(IntPtr)bytes.Length,0x40,out old);
            var action = (BinaryOp)Marshal.GetDelegateForFunctionPointer(
                handle.AddrOfPinnedobject(),typeof(BinaryOp));
            var temp = action(3,2); //6!
        }
        finally { handle.Free(); }
    }
}

这段代码归功于Mehrdad.

解决方法

它基本上是从本机代码创建一个委托进行乘法,然后调用它.字节数组是原始指令,然后固定在内存中,设置为可执行,然后Marshal.GetDelegateForFunctionPointer创建委托本身.

条件运算符是为x86和x64使用不同的本机代码.我怀疑在ARM处理器上运行Mono时会失败,例如:)

原文地址:https://www.jb51.cc/csharp/98224.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐