中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

StructLayout在C#中的具體應用案例

c#
小樊
82
2024-07-20 23:54:59
欄目: 編程語言

  1. 使用StructLayout指定字段在內存中的布局順序
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential)]
struct Point
{
    public int x;
    public int y;
}

class Program
{
    static void Main()
    {
        Point p = new Point();
        p.x = 10;
        p.y = 20;

        byte[] buffer = new byte[Marshal.SizeOf(p)];
        IntPtr ptr = Marshal.AllocHGlobal(buffer.Length);
        Marshal.StructureToPtr(p, ptr, false);
        Marshal.Copy(ptr, buffer, 0, buffer.Length);

        foreach (byte b in buffer)
        {
            Console.Write($"{b} ");
        }

        Marshal.FreeHGlobal(ptr);
    }
}

在上面的示例中,通過使用StructLayout(LayoutKind.Sequential)指定Point結構體中字段的布局順序為按順序排列。然后將Point結構體實例轉換為字節數組,并輸出每個字節的值。

  1. 使用StructLayout指定字段的偏移量
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Explicit)]
struct Union
{
    [FieldOffset(0)]
    public byte b1;
    [FieldOffset(1)]
    public byte b2;
    [FieldOffset(0)]
    public short s1;
}

class Program
{
    static void Main()
    {
        Union u = new Union();
        u.s1 = 257;

        Console.WriteLine(u.b1); // 輸出1
        Console.WriteLine(u.b2); // 輸出1
    }
}

在上面的示例中,通過使用StructLayout(LayoutKind.Explicit)指定Union結構體中字段的布局方式為顯式布局。然后使用FieldOffset指定了字段的偏移量,使得b1和b2共享同一內存空間,從而可以通過不同的字段訪問同一內存位置的值。

0
辰溪县| 铁岭市| 荔波县| 稷山县| 获嘉县| 鹿邑县| 西乌珠穆沁旗| 平果县| 平乐县| 琼海市| 南汇区| 辽宁省| 赤水市| 灌云县| 庆城县| 弋阳县| 晴隆县| 牡丹江市| 盐源县| 方山县| 濮阳县| 云浮市| 揭东县| 凤冈县| 天等县| 綦江县| 双牌县| 安阳市| 连江县| 都昌县| 鸡东县| 土默特右旗| 北票市| 子洲县| 遂平县| 泰顺县| 敦化市| 巍山| 丰顺县| 卢龙县| 华宁县|