溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#的const、readonly和static關(guān)鍵字如何使用

發(fā)布時(shí)間:2022-10-21 09:35:54 來(lái)源:億速云 閱讀:106 作者:iii 欄目:編程語(yǔ)言

這篇文章主要講解了“C#的const、readonly和static關(guān)鍵字如何使用”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“C#的const、readonly和static關(guān)鍵字如何使用”吧!

const

  • const默認(rèn)是靜態(tài)的,可以通過(guò)"類(lèi)名.字段名"來(lái)訪問(wèn)。

  • const變量只能在聲明的時(shí)候賦值,不能在構(gòu)造函數(shù)中為const類(lèi)型變量賦值。

  • 一旦程序集被編譯,const變量會(huì)被寫(xiě)進(jìn)程序集的IL代碼中。如果想修改const變量值,必須在修改值后再重新生成程序集。

  • const是編譯期變量

    public class Test
    {
        public const int defaultValue = 10;
        //這里報(bào)錯(cuò):因?yàn)椴荒茉跇?gòu)造函數(shù)內(nèi)為const變量賦值
        public Test()
        {
            defaultValue = 1000;
        }
    }

以上,可以通過(guò)Test.defaultValue來(lái)獲取變量defaultValue的值。在Test構(gòu)造中為defaultValue賦值會(huì)報(bào)錯(cuò),只能在聲明defaultValue的時(shí)候賦初值。

readonly

readonly默認(rèn)是實(shí)例變量,只能通過(guò)"對(duì)象實(shí)例.字段名"來(lái)訪問(wèn)。
readonly變量可以在聲明的時(shí)候或在構(gòu)造函數(shù)內(nèi)賦值。
如果想改變r(jià)eadonly變量值,只需要在聲明變量或構(gòu)造函數(shù)內(nèi)修改,不需要重新生成程序集。
readonly是運(yùn)行時(shí)變量

    class Program
    {
        static void Main(string[] args)
        {
            Test test = new Test();
            Console.WriteLine(test.rdValue);
            Console.ReadKey();
        }
    }
    public class Test
    {
        public readonly int rdValue;
        public Test()
        {
            this.rdValue = 100;
        }
        //這里報(bào)錯(cuò):因?yàn)橹荒茉诼暶髯兞炕驑?gòu)造函數(shù)內(nèi)對(duì)readonly變量賦值
        public int RDVaue
        {
            get { return rdValue; }
            set { rdValue = value; }
        }
    }

以上,通過(guò)Test類(lèi)的實(shí)例來(lái)獲取readonly變量值,test.rdValue。在RDValue屬性中為readonly變量rdValue賦值會(huì)報(bào)錯(cuò)。

如果在readonly之前加上static關(guān)鍵字:

此時(shí)的readonly變量只能在聲明變量的時(shí)候賦值
此時(shí)的readonly變量可以通過(guò)"類(lèi)名.字段名"來(lái)訪問(wèn)
此時(shí)的readonly變量變成了編譯期變量

    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Test.rdValue);
            Console.ReadKey();
        }
    }
    public class Test
    {
        public static readonly int rdValue=100;
    }

以上,只能在聲明static readonly變量rdValue的時(shí)候賦值。 通過(guò)Test.rdValue來(lái)訪問(wèn)static readonly變量。

感謝各位的閱讀,以上就是“C#的const、readonly和static關(guān)鍵字如何使用”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)C#的const、readonly和static關(guān)鍵字如何使用這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI