C# 快速導覽 - fixed 陳述

關鍵字 (keyword) fixed 用於防止不安全的內容遭到記憶體重新配置,或是建立固定大小的緩衝區。



舉例如下
class Point{ 
    public int x, y; 
}

class Demo {
    unsafe static void SquarePtrParam (int* p) {
        *p *= *p;
    }

    unsafe static void Main() {
        Point pt = new Point();
        pt.x = 5;
        pt.y = 6;

        fixed (int* p = &pt.x) {
            SquarePtrParam(p);
        }

        System.Console.WriteLine ("{0} {1}", pt.x, pt.y);
    }
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:fixed1.cs
    功能:示範 C# 程式 
    作者:張凱慶
    時間:西元 2013 年 6 月 */


編譯執行,結果如下



中英文術語對照
關鍵字keyword


您可以繼續參考
其他內建型態


相關目錄
回 C# 快速導覽
回 C# 教材
回首頁


參考資料
Standard ECMA-334 C# Language Specification
msdn: fixed 陳述式 (C# 參考)

沒有留言: