舉例如下
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 | 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); } } /* 《程式語言教學誌》的範例程式 檔名:class23.cs 功能:示範 C# 程式 作者:張凱慶 時間:西元 2013 年 6 月 */ |
a 宣告為 readonly
2 | readonly string a; |
編譯時這裡會出錯
4 5 6 | void DoSomething() { a = "Free your mind." ; } |
編譯結果如下

中英文術語對照 | |
---|---|
屬性 | property |
建構子 | constructor |
您可以繼續參考
類別
相關目錄
回 C# 快速導覽
回 C# 教材
回首頁
參考資料
Standard ECMA-334 C# Language Specification
msdn: readonly (C# 參考)
沒有留言:
張貼留言