程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 程序員參考--集合類教學文章

C# 程序員參考--集合類教學文章

編輯:C#入門知識

本教程展示如何實現可與 foreach 語句一起使用的集合類。

教程

foreach 語句是循環訪問數組元素的方便方法。如果集合類已實現 System.Collections.IEnumeratorSystem.Collections.IEnumerable 接口,它還可以枚舉該集合的元素。

示例 1

下面的代碼示例闡釋如何編寫可與 foreach 一起使用的集合類。該類是字符串標記化拆分器,類似於 C 運行時庫函數 strtok

// tokens.cs



using System;



// The System.Collections namespace is made available:



using System.Collections;







// Declare the Tokens class:



public class Tokens : IEnumerable



{



   private string[] elements;







   Tokens(string source, char[] delimiters)



   {



      // Parse the string into tokens:



      elements = source.Split(delimiters);



   }







   // IEnumerable Interface Implementation:



   //   Declaration of the GetEnumerator() method 



   //   required by IEnumerable



   public IEnumerator GetEnumerator()



   {



      return new TokenEnumerator(this);



   }







   // Inner class implements IEnumerator interface:



   private class TokenEnumerator : IEnumerator



   {



      private int position = -1;



      private Tokens t;







      public TokenEnumerator(Tokens t)



      {



         this.t = t;



      }







      // Declare the MoveNext method required by IEnumerator:



      public bool MoveNext()



      {



         if (position < t.elements.Length - 1)



         {



            position++;



            return true;



         }



         else



         {



            return false;



         }



      }







      // Declare the Reset method required by IEnumerator:



      public void Reset()



      {



         position = -1;



      }







      // Declare the Current property required by IEnumerator:



      public object Current



      {



         get



         {



            return t.elements[position];



         }



      }



   }







   // Test Tokens, TokenEnumerator







   static void Main()



   {



      // Testing Tokens by breaking the string into tokens:



      Tokens f = new Tokens("This is a well-done program.", 



         new char[] {' ','-'});



      foreach (string item in f)



      {



         Console.WriteLine(item);



      }



   }



}

輸出

This



is



a



well



done



program.

代碼討論

在前面的示例中,下列代碼用於 Tokens 化,方法是將“This is a well-done program.”拆分為標記(使用“”和“-”作為分隔符),並用 foreach 語句枚舉這些標記:

Tokens f = new Tokens("This is a well-done program.", 



   new char[] {' ','-'});



foreach (string item in f)



{



   Console.WriteLine(item);



}

請注意,Tokens 在內部使用一個數組,自行實現 IEnumeratorIEnumerable。該代碼示例本可以利用數組本身的枚舉方法,但那會使本示例的目的失效。

在 C# 中,集合類並非必須嚴格從 IEnumerable IEnumerator 繼承才能與 foreach 兼容;只要類有所需的 GetEnumeratorMoveNextResetCurrent 成員,便可以與 foreach 一起使用。省略接口的好處為,使您可以將 Current 的返回類型定義得比 object 更明確,從而提供了類型安全。

例如,從上面的示例代碼開始,更改以下幾行:

public class Tokens  // no longer inherits from IEnumerable



public TokenEnumerator GetEnumerator()  // doesn't return an IEnumerator



public class TokenEnumerator  // no longer inherits from IEnumerator



public string Current  // type-safe: returns string, not object

現在,由於 Current 返回字符串,當 foreach 語句中使用了不兼容的類型時,編譯器便能夠檢測到:

foreach (int item in f)  // Error: cannot convert string 

[1] [2] 下一頁  

to int

省略 IEnumerable IEnumerator 的缺點是,集合類不再能夠與其他公共語言運行庫兼容的語言的 foreach 語句(或等效項)交互操作。

您可以同時擁有二者的優點(C# 內的類型安全以及與兼容其他公共語言運行庫的語言的互操作性),方法是從 IEnumerableIEnumerator 繼承,並使用顯式接口實現,如下面的示例所示。

示例 2

本示例功能與“示例 1”等效,但它在維持與其他語言互操作性的同時還提供 C# 中的類型安全。

// tokens2.cs



using System;



using System.Collections;







public class Tokens: IEnumerable



{



   private string[] elements;







   Tokens(string source, char[] delimiters)



   {



      elements = source.Split(delimiters);



   }







   // IEnumerable Interface Implementation:







   public TokenEnumerator GetEnumerator() // non-IEnumerable version



   {



      return new TokenEnumerator(this);



   }







   IEnumerator IEnumerable.GetEnumerator() // IEnumerable version



   {



      return (IEnumerator) new TokenEnumerator(this);



   }







   // Inner class implements IEnumerator interface:







   public class TokenEnumerator: IEnumerator



   {



      private int position = -1;



      private Tokens t;







      public TokenEnumerator(Tokens t)



      {



         this.t = t;



      }







      public bool MoveNext()



      {



         if (position < t.elements.Length - 1)



         {



            position++;



            return true;



         }



         else



         {



            return false;



         }



      }







      public void Reset()



      {



         position = -1;



      }







      public string Current // non-IEnumerator version: type-safe



      {



         get



         {



            return t.elements[position];



         }



      }







      object IEnumerator.Current // IEnumerator version: returns object



      {



         get



         {



            return t.elements[position];



         }



      }



   }







   // Test Tokens, TokenEnumerator







   static void Main()



   {



      Tokens f = new Tokens("This is a well-done program.", 



         new char [] {' ','-'});



      foreach (string item in f) // try changing string to int



      {



         Console.WriteLine(item);



      }



   }



}
 

上一頁  [1] [2] 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved