91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# const常量怎么使用

發布時間:2021-12-02 11:11:10 來源:億速云 閱讀:187 作者:iii 欄目:編程語言

這篇文章主要介紹“C# const常量怎么使用”,在日常操作中,相信很多人在C# const常量怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C# const常量怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一般情況下,如果你需要聲明的常量是普遍公認的并作為單個使用,例如圓周率,黃金分割比例等。你可以考慮使用C# const常量,如:public const double PI = 3.1415926;。如果你需要聲明常量,不過這個常量會隨著實際的運行情況而決定,那么,readonly常量將會是一個不錯的選擇,例如上面***個例子的訂單號Order.ID。

另外,如果要表示對象內部的默認值的話,而這類值通常是常量性質的,那么也可以考慮const。更多時候我們對源代碼進行重構時(使用Replace Magic Number with Symbolic Constant),要去除魔數(Magic Number)的影響都會借助于const的這種特性。

對于readonly和const所修飾的變量究竟是屬于類級別的還是實例對象級別的問題,我們先看看如下代碼:

using System;   namespace ConstantLab  {  class Program  {  static void Main(string[] args)  {  Constant c = new Constant(3);  Console.WriteLine("ConstInt = " + Constant.ConstInt.ToString());  Console.WriteLine("ReadonlyInt = " + c.ReadonlyInt.ToString());  Console.WriteLine("InstantReadonlyInt = " + c.InstantReadonlyInt.ToString());  Console.WriteLine("StaticReadonlyInt = " + Constant.StaticReadonlyInt.ToString());   Console.WriteLine("Press any key to continue");  Console.ReadLine();  }  }   class Constant  {  public Constant(int instantReadonlyInt)  {  InstantReadonlyInt = instantReadonlyInt;  }   public const int ConstInt = 0;   public readonly int ReadonlyInt = 1;   public readonly int InstantReadonlyInt;   public static readonly int StaticReadonlyInt = 4;  }  }

使用Visual C#在 Main()里面使用IntelliSence插入Constant的相關field的時候,發現ReadonlyInt和 InstantReadonlyInt需要指定Constant的實例對象;而ConstInt和StaticReadonlyInt卻要指定 Constant class(參見上面代碼)。可見,用const或者static readonly修飾的常量是屬于類級別的;而readonly修飾的,無論是直接通過賦值來初始化或者在實例構造函數里初始化,都屬于實例對象級別。

一般情況下,如果你需要表達一組相關的編譯時確定常量,你可以考慮使用枚舉類型(enum),而不是把多個C# const常量直接嵌入到class中作為field,不過這兩種方式沒有絕對的孰優孰劣之分。

using System;   enum CustomerKind  {  SuperVip,  Vip,  Normal  }   class Customer  {  public Customer(string name, CustomerKind kind)  {  m_Name = name;  m_Kind = kind;  }   private string m_Name;  public string Name  {  get { return m_Name; }  }   private CustomerKind m_Kind;  public CustomerKind Kind  {  get { return m_Kind; }  }   public override string ToString()  {  return "Name: " + m_Name + "[" + m_Kind.ToString() + "]";  }  }

到此,關于“C# const常量怎么使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿城市| 东兰县| 辽阳市| 庄浪县| 华蓥市| 麻城市| 开原市| 镇远县| 葫芦岛市| 沁水县| 茂名市| 鹿泉市| 阳东县| 崇礼县| 揭东县| 桃园市| 长乐市| 长泰县| 吴川市| 建水县| 洛川县| 黔西| 伊金霍洛旗| 霍林郭勒市| 尉氏县| 苍梧县| 南靖县| 徐汇区| 怀仁县| 海南省| 无棣县| 锦州市| 南江县| 宜都市| 保亭| 揭阳市| 行唐县| 望谟县| 望江县| 英吉沙县| 浮梁县|