当前位置:  开发笔记 > 编程语言 > 正文

C#中的reinterpret_cast

如何解决《C#中的reinterpret_cast》经验,为你挑选了1个好方法。

我正在寻找一种方法来重新解释byte []类型的数组作为一个不同的类型,比如short [].在C++中,这可以通过简单的转换实现,但在C#中,我没有找到实现这一目的的方法,而不需要复制整个缓冲区.

有任何想法吗?



1> Sander..:

你可以做到这一点,但这是一个相对糟糕的主意.像这样的原始内存访问不是类型安全的,只能在完全信任的安全环境下完成.您绝不应该在设计合理的托管应用程序中执行此操作.如果您的数据伪装成两种不同的形式,那么您实际上可能有两个独立的数据集?

无论如何,这里有一个快速简单的代码片段来完成你的要求:

byte[] bytes = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int byteCount = bytes.Length;

unsafe
{
    // By using the fixed keyword, we fix the array in a static memory location.
    // Otherwise, the garbage collector might move it while we are still using it!
    fixed (byte* bytePointer = bytes)
    {
        short* shortPointer = (short*)bytePointer;

        for (int index = 0; index < byteCount / 2; index++)
        {
            Console.WriteLine("Short {0}: {1}", index, shortPointer[index]);
        }
    }
}

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有