C# 快速導覽 - static 建構子

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



舉例如下
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);
    }
}

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


編譯執行,結果如下



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


您可以繼續參考
類別


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


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

沒有留言: