中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C#索引怎么用

發布時間:2021-12-03 10:04:36 來源:億速云 閱讀:116 作者:小新 欄目:編程語言

小編給大家分享一下C#索引怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

下面是貼出來的代碼:

using System;   using System.Collections.Generic;   using System.Linq;   using System.Text;      namespace index   {           class Worker           {                   public string LastName;                   public string FirstName;                   public string MyBirth;                      public string this[int index]                   {                           set                           {                                   switch (index)                                   {                                           case 0: LastName = value;                                                   break;                                           case 1: FirstName = value;                                                   break;                                           case 2: MyBirth = value;                                                   break;                                           default:                                                   throw new ArgumentOutOfRangeException("index");                                                   break;                                   }                           }                           get                           {                                   switch(index)                                   {                                           case 0 : return LastName;                                           case 1 : return FirstName;                                           case 2 : return MyBirth;                                           default :                                                      throw new ArgumentOutOfRangeException("index");                                                   break;                                   }                                                                      }                   }           }           class Program           {                   static void Main(string[] args)                   {                           Worker a = new Worker();                           Console.WriteLine("print the value:{0},{1},{2}",a[0],a[1],a[2]);                           Console.WriteLine("please print your last name");                           a[0] = Console.ReadLine();                           Console.WriteLine("please print your first name");                           a[1] = Console.ReadLine();                           Console.WriteLine("please print your birthday");                           a[2] = Console.ReadLine();                           Console.WriteLine("Now,your name is {0},{1},and your birth is {2}",a[0],a[1],a[2]);                      }           }   }

首先什么是C#索引呢?

書上說它是一組get和set訪問器,我個人就直接這么認為就是獲值或設值的概念。(可能是錯誤的啊,呵呵,理論太差,剛看的)。

怎樣聲明C#索引呢?

他的語法是如下:

要注意下面幾點:a:索引沒有名稱,它是通過關鍵字this。

b:參數列表在方括號里面。

c:參數列表至少必須聲明一個參數。

ReturnType this [type param1,...]   {           get                   {                           ...                   }           set                   {                           ...                   }   }

以上是“C#索引怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

银川市| 洞头县| 钟山县| 黄石市| 根河市| 宝应县| 贵溪市| 闽侯县| 汉沽区| 会理县| 宁德市| 青冈县| 长寿区| 南皮县| 罗甸县| 枣强县| 霞浦县| 阿图什市| 泰和县| 水富县| 敦化市| 论坛| 岳阳县| 宁晋县| 屏边| 库伦旗| 舞钢市| 惠水县| 汶川县| 阆中市| 从化市| 烟台市| 海安县| 突泉县| 合阳县| 海南省| 岳阳市| 繁峙县| 铁岭县| 石棉县| 宁城县|