C# 快速導覽 - static 建構子

static 建構子 (constructor) 用來初始化 static 屬性 (property) 。



舉例如下
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 Demo {
    public static int a;
     
    static Demo() {
        a = 0;
    }
     
    public static void DoSomething() {
        System.Console.WriteLine("There is no spoon.");
        a++;
    }
}
 
class DemoTest {
    static void Main() {
        Demo.DoSomething();
        System.Console.WriteLine(Demo.a);
        Demo.DoSomething();
        System.Console.WriteLine(Demo.a);
    }
}
 
/* 《程式語言教學誌》的範例程式
    檔名:class18.cs
    功能:示範 C# 程式
    作者:張凱慶
    時間:西元 2013 年 6 月 */


編譯執行,結果如下



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


您可以繼續參考
類別


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


參考資料
Standard ECMA-334 C# Language Specification
msdn: 靜態建構函式 (C# 程式設計手冊)

沒有留言: