C# 快速導覽 - const 成員






google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "7187368929";
google_ad_width = 728;
google_ad_height = 15;














google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "4683073635";
google_ad_width = 728;
google_ad_height = 90;












公告



《如何自學程式設計》入選 Google Play 台灣地區2016年度最佳書籍|本站於 Google Play 銷售電子書。
預計之後會調整本站內容,凡是有兩個版本的教材,舊版本將刪除。













google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "5435125940";
google_ad_width = 728;
google_ad_height = 15;


























C# 快速導覽 - const 成員






宣告為 const 的屬性 (property) 為常數,必須建立時同時建立初值。



舉例如下
class Demo {
const string a = "There is no spoon.";

void DoSomething() {
System.Console.WriteLine(a);
}

static void Main() {
Demo d = new Demo();
d.DoSomething();
}
}

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



此例用 DoSomething() 存取 const 的屬性 a
void DoSomething() {
System.Console.WriteLine(a);
}



編譯執行,結果如下



const 屬性其實隱含 static 的意思,因此可由類別 (class) 名稱直接呼叫
class Demo {
const string a = "There is no spoon.";

static void Main() {
System.Console.WriteLine(Demo.a);
}
}

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



編譯執行,結果如下



const 也可以用在方法 (method) 中的區域變數,例如
class Demo {
static void Main() {
const string a = "Free your mind.";
System.Console.WriteLine(a);
}
}

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



編譯執行,結果如下



















中英文術語對照
屬性property
類別class
方法method



您可以繼續參考

類別




相關目錄

回 C# 快速導覽
回 C# 教材
回首頁



參考資料

Standard ECMA-334 C# Language Specification
msdn: const (C# 參考)







沒有留言:




















window.___gcfg = { 'lang': 'zh-TW' };





google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "5963585466";
google_ad_width = 728;
google_ad_height = 15;











Popular posts from this blog

Mới 2 tập phim, "Ngày Ấy Mình Đã Yêu" đã khiến khán giả muốn “té xỉu” vì 4 hạt sạn này

BitComet 比特彗星 1.49 免安裝中文版 (1.50 安裝版) - 免費BT下載軟體

JavaScript 入門指南 - 完成版的 Encode Software