const是一個修飾常量的關(guān)鍵字,它限定一個變量不允許被改變。使用const在一定程度上可以提高程序的安全性和可靠性,它在程序設(shè)計中有著非常重要的作用,給開發(fā)人員帶來非常方便的應(yīng)用。
下面我們來建一個控制臺應(yīng)用程序作測試:
public class Test { public readonly string name = "George"; public const string coname = "ABC Company LLC"; public Test(string name) { // readonly 修飾的變量能且只能在 Constructor(構(gòu)造函數(shù))中被改變 this.name = name; } public string _name { get { return name; } //不可以對readonly修飾的變量進(jìn)行Set操作 //set //{ // name = value; //} } } class Program { static void Main(string[] args) { Test obj = new Test("Test"); //readonly的變量不可以修改值,只能在 Constructor(構(gòu)造函數(shù))中被改變 //obj.name = "New Value"; Console.WriteLine(obj.name); //const 的變量直接通過對象訪問,不需要實例化 Console.WriteLine(Test.coname); Console.Read(); } }
以前一直以為 readonly 與 const 的作用是一樣的,現(xiàn)在明白它們之間的區(qū)別了,不知道您是否也明白了呢?希望大家有所收獲吧!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com