<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
方法1:
開啟新新增的外部工具:
方法2
foreach語句是微軟提供的支援內建迭代器的語句法糖,編譯foreach語句後生產的程式碼與使用迭代器的程式碼完全一致
呼叫GetEnumerator()方法獲得迭代器——呼叫IEnumerator.MoveNext()——呼叫IEnumerator.Current()
Foreach迴圈迭代可列舉型別的過程:
1、通過呼叫IEnumerator介面和IEnumerator的參照
2、IEnuerator呼叫MoveNext方法
3) ①True:IEnumerator的Current屬性獲取物件的應用,用於foreach迴圈
②false 結束
4、重複2、3步知道MoveNext返回false
迭代器可用於方法、屬性存取器或其他程式碼塊,使使用者能夠在類或結構中支援Foreach迭代,而不必實現整個IEnumerable介面,只需要一個型別化的方法GetEnumerator(),不需要處理設計模式
```csharp using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; // 需要參照的名稱空間 namespace 實現迭代器常用的方法 { class Program { public static IEnumerable SimpleDemo() { yield return "string1"; yield return "string2"; yield return "string3"; yield break; //執行到此處就終止了迭代 yield return "string4"; yield return "string5"; } //月份迭代 public class Months : IEnumerable //為了使用Foreach遍歷,要保證是可列舉型別的 { string[] month = { "Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Nov", "Dec" }; public IEnumerator GetEnumerator() { for(int i=0;i<month.Length;i++) { yield return month[i]; } } } static void Main(string[] args) { foreach (string item in SimpleDemo()) { Console.WriteLine(item); } Months mon = new Months(); foreach(string m in mon) { Console.WriteLine(m); } Console.ReadKey(); } } }
分佈類定義:將類的定義拆分到兩個或多個資原始檔中。每個原始檔包含類定義的一部分,編譯應用程式時將把所有部分組合起來,這就是分佈類。
應用場合(partial):
vs在建立windows表單和web服務包裝程式碼等時都是用此方法。開發人員無須編譯vs所建立的檔案,即可建立使用這些類的程式碼。
實現過程:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _3_分部類 { //利用分部類實現階乘與冪指數運算 partial class arithmetic //階乘 { public int factorial(int num) { int factorialval = 1; for(int i = num; i>0;i--) { factorialval *= i; } return factorialval; } } partial class arithmetic //冪指數運算 { public int power(int num, int index) { int result = 1; for (int i = 0; i < index; i++) { result *= num; } return result; } } class Program { static void Main(string[] args) { arithmetic a = new arithmetic(); int num = 5; Console.WriteLine("呼叫分部類的第一部分——階乘計算結果:{0}", a.factorial(num)); int index = 3; Console.WriteLine("呼叫分部類的第二部分——冪指函數計算結果:{0}", a.power(num, index)); Console.ReadKey(); } } }
注意事項 :
可以通過小標存取陣列中的元素的方式就是索引器
索引器允許類或結構的範例按照與陣列相同的方式進行索引。索引器的宣告和屬性的宣告非常相似,不同的是他們的存取器採用引數——索引器的宣告除了包括索引關鍵字(index)的宣告外,還包括this關鍵字。使得向陣列那樣對物件使用下標,並提供了通過索引方式方便第存取類的資料資訊的方法。(屬性的作用就是保護欄位,對欄位的取值和賦值進行限定)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _4_索引器概述及宣告 { //屬性宣告 public class Clerk { private string name; //欄位宣告,專供類內部使用,所以宣告為私有的 public string Name //屬性為外部事務,可以供其他類進行交流使用,所以宣告為公共的 { get { return name; } set { name = value; } } private char gender; public char Gender { get { if (gender != '男' && gender != '女') gender = '男'; return gender; } set { gender = value; } } //索引器宣告1 //private int[] myint = new int[10]; //public int this[int index] //{ // get { return myint[index]; } //單獨存在為唯讀 // set { myint[index] = value; } //單獨存在為只寫 ,兩個同時存在為讀寫 //} //宣告一個虛擬的索引器 //private int[] myint2 = new int[10]; //public virtual int this[int index2] //{ // get { return myint2[index2]; } // set { myint2[index2] = value; } //} // 宣告一個外部索引器 public extern int this[int index] { get; set; } } // 抽象索引器宣告 abstract class indexEaxmple { public abstract int this[int index] { get; set; } } class Program { static void Main(string[] args) { } } }
範例:1、存取類範例(容量為10的整型陣列為例)2、存取類成員(以星期演示)
using System; namespace _5_索引器在類中的使用 { public class indexText //存取類的範例 { private int[] array = new int[10]; public int this[int index] { get { if (index < 0 || index > 10) return 0; else return array[index]; } set { if (index >= 0 && index < 10) array[index] = value; } } } public class weekIndex //存取類成員 { string[] week = { "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" }; private int getDay(string weekText) { int i = 0; foreach(string day in week) { if (day == weekText) return i+1; i++; } return -1; } public int this[string week] { get { return getDay(week); } } } class Program { static void Main(string[] args) { Console.WriteLine("存取類範例的結果"); indexText Arr = new indexText(); Arr[-5] = 5; Arr[0] = 15; Arr[2] = 60; Arr[11] = 65; Console.WriteLine("Arr[-5]={0}", Arr[-5]); Console.WriteLine("Arr[0]={0}", Arr[0]); Console.WriteLine("Arr[1]={0}", Arr[1]); Console.WriteLine("Arr[2]={0}", Arr[2]); Console.WriteLine("Arr[11]={0}", Arr[11]); Console.WriteLine("存取累成員結果"); weekIndex we = new weekIndex(); Console.WriteLine(we["星期三"]); Console.WriteLine(we["星期四"]); Console.WriteLine(we["星期八"]); Console.WriteLine(we["星期0"]); Console.ReadKey(); } } }
索引器可以作為介面成員來宣告,單介面中的索引器宣告不包括任何存取修飾符,這是因為介面不包括任何程式設計程式語句,所以get和set存取器沒有程式主題,因此,存取索引器的用途是指示索引器時讀寫、唯讀還是隻寫
using System; namespace _6_索引器在介面中的使用 { public interface iTextIndex { int this[int index] { get; set; } } class indexText:iTextIndex { // 演示容量為10的陣列,對範例成員的存取 private int[] array = new int[10]; public int this[int index] { get { if (index < 0 || index >= 10) return 0; else return array[index]; } set { if (index > 0 && index < 10) array[index] = value; } } } class Program { static void Main(string[] args) { indexText Arr = new indexText(); Arr[-1] = 5; Arr[4] = 10; Arr[9] = 20; Arr[14] = 30; for(int i=-1;i<15;i=i+5) { Console.WriteLine("Arr[{0}]={1}", i, Arr[i]); } Console.ReadKey(); } } }
索引器實現QQ狀態的存取,利用類成員進行存取,得出QQ狀態對應的索引值
using System; namespace 本章小結及任務實施 { public class QQStateIndex { string [] qqState = { "線上", "離線", "忙碌", "Q我", "隱身" }; private int getState(string stateText) { int i= 0; foreach(string stateString in qqState) { if (stateString == stateText) return i; i++; } return -1; } public int this[string stateString] { get { return getState(stateString); } } } class Program { static void Main(string[] args) { QQStateIndex qs = new QQStateIndex(); Console.WriteLine(qs["線上"]); Console.WriteLine(qs["忙碌"]); Console.WriteLine(qs["睡眠"]); Console.ReadKey(); } } }
到此這篇關於C# 迭代器分部類與索引器詳情的文章就介紹到這了,更多相關C# 迭代器,索引器內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45