unsafe(C# 参考)

unsafe 关键字表示不安全上下文,该上下文是任何涉及指针的操作所必需的。 有关详细信息,请参阅不安全代码和指针

可在类型或成员的声明中使用 unsafe 修饰符。 因此,类型或成员的整个正文范围均被视为不安全上下文。 以下面使用 unsafe 修饰符声明的方法为例:

unsafe static void FastCopy(byte[] src, byte[] dst, int count)
{
    // Unsafe context: can use pointers here.
}

不安全上下文的范围从参数列表扩展到方法的结尾,因此也可在以下参数列表中使用指针:

unsafe static void FastCopy ( byte* ps, byte* pd, int count ) {...}

还可以使用不安全块从而能够使用该块内的不安全代码。 例如:

unsafe
{
    // Unsafe context: can use pointers here.
}

若要编译不安全代码,必须指定 AllowUnsafeBlocks 编译器选项。 不能通过公共语言运行时验证不安全代码。

示例

// compile with: -unsafe
class UnsafeTest
{
    // Unsafe method: takes pointer to int.
    unsafe static void SquarePtrParam(int* p)
    {
        *p *= *p;
    }

    unsafe static void Main()
    {
        int i = 5;
        // Unsafe method: uses address-of operator (&).
        SquarePtrParam(&i);
        Console.WriteLine(i);
    }
}
// Output: 25

C# 语言规范

有关详细信息,请参阅 C# 语言规范中的不安全代码。 该语言规范是 C# 语法和用法的权威资料。

另请参阅