C# 快速導覽 - readonly 成員

宣告為 readonly 的屬性 (property) 可在建構子 (constructor) 中作設定,在建構子以外的地方進行設定會發生編譯錯誤。



舉例如下
class Demo {
    readonly string a;
    
    Demo() {
        a = "There is no spoon.";
    }
    
    void DoSomething() {
        a = "Free your mind.";
    }
    
    static void Main() {
        Demo d = new Demo();
        d.a = "Free your mind.";
        System.Console.WriteLine(d.a);
        d.DoSomething();
        System.Console.WriteLine(d.a);
    }
}

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


a 宣告為 readonly
readonly string a;


編譯時這裡會出錯
void DoSomething() {
    a = "Free your mind.";
}


編譯結果如下



中英文術語對照
屬性property
建構子constructor


您可以繼續參考
類別


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


參考資料
Standard ECMA-334 C# Language Specification
msdn: readonly (C# 參考)

沒有留言: