C# 快速導覽 - fixed 陳述

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



舉例如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
    }
}
 
/* 《程式語言教學誌》的範例程式
    檔名:fixed1.cs
    功能:示範 C# 程式
    作者:張凱慶
    時間:西元 2013 年 6 月 */


編譯執行,結果如下



中英文術語對照
關鍵字keyword


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


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


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

沒有留言: