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

溫馨提示×

溫馨提示×

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

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

C#泛型接口實例應用

發布時間:2021-09-18 00:21:16 來源:億速云 閱讀:245 作者:chen 欄目:編程語言

這篇文章主要講解了“C#泛型接口實例應用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C#泛型接口實例應用”吧!

C# 泛型接口代碼

//Type parameter T in angle brackets.  public class GenericList﹤T﹥ :   System.Collections.Generic.IEnumerable﹤T﹥  {  protected Node head;  protected Node current = null;   // Nested class is also generic on T  protected class Node  {  public Node next;  private T data;  //T as private member datatype   public Node(T t)  //T used in non-generic constructor  {  next = null;  data = t;  }   public Node Next  {  get { return next; }  set { next = value; }  }   public T Data  //T as return type of property  {  get { return data; }  set { data = value; }  }  }   public GenericList()  //constructor  {  head = null;  }   public void AddHead(T t)  //T as method parameter type  {  Node n = new Node(t);  n.Next = head;  head = n;  }   // Implementation of the iterator  public System.Collections.Generic.IEnumerator﹤T﹥ GetEnumerator()  {  Node current = head;  while (current != null)  {  yield return current.Data;  current = current.Next;  }  }   // IEnumerable﹤T﹥ inherits from IEnumerable, therefore this class   // must implement both the generic and non-generic versions of   // GetEnumerator. In most cases, the non-generic method can   // simply call the generic method.  System.Collections.IEnumerator   System.Collections.IEnumerable.GetEnumerator()  {  return GetEnumerator();  }  }   public class SortedList﹤T﹥ :   GenericList﹤T﹥ where T : System.IComparable﹤T﹥  {  // A simple, unoptimized sort algorithm that   // orders list elements from lowest to highest:   public void BubbleSort()  {  if (null == head || null == head.Next)  {  return;  }  bool swapped;   do {  Node previous = null;  Node current = head;  swapped = false;   while (current.next != null)  {  //  Because we need to call this method, the SortedList  //  class is constrained on IEnumerable﹤T﹥  if (current.Data.CompareTo(current.next.Data) ﹥ 0)  {  Node tmp = current.next;  current.next = current.next.next;  tmp.next = current;   if (previous == null)  {  head = tmp;  }  else {  previous.next = tmp;  }  previous = tmp;  swapped = true;  }  else {  previous = current;  current = current.next;  }  }  } while (swapped);  }  }   // A simple class that implements   //IComparable﹤T﹥ using itself as the   // type argument. This is a common  // design pattern in objects that   // are stored in generic lists.  public class Person : System.IComparable﹤Person﹥  {  string name;  int age;   public Person(string s, int i)  {  name = s;  age = i;  }   // This will cause list elements  // to be sorted on age values.  public int CompareTo(Person p)  {  return age - p.age;  }   public override string ToString()  {  return name + ":" + age;  }   // Must implement Equals.  public bool Equals(Person p)  {  return (this.age == p.age);  }  }   class Program  {  static void Main()  {  //Declare and instantiate a new generic SortedList class.  //Person is the type argument.  SortedList﹤Person﹥ list = new SortedList﹤Person﹥();   //Create name and age values to initialize Person objects.  string[] names = new string[]   {   "Franscoise",   "Bill",   "Li",   "Sandra",   "Gunnar",   "Alok",   "Hiroyuki",   "Maria",   "Alessandro",   "Raul"   };   int[] ages = new int[] { 45, 19, 28,   23, 18, 9, 108, 72, 30, 35 };   //Populate the list.  for (int x = 0; x ﹤ 10; x++)  {  list.AddHead(new Person(names[x], ages[x]));  }   //Print out unsorted list.  foreach (Person p in list)  {  System.Console.WriteLine(p.ToString());  }  System.Console.WriteLine("Done with unsorted list");   //Sort the list.  list.BubbleSort();   //Print out sorted list.  foreach (Person p in list)  {  System.Console.WriteLine(p.ToString());  }  System.Console.WriteLine("Done with sorted list");  }  }

可將多重接口指定為單個類型上的約束,如下所示:

C# 泛型接口代碼

class Stack﹤T﹥ where T : System.IComparable﹤T﹥, IEnumerable﹤T﹥  {  }

一個接口可定義多個類型參數,如下所示:

C# 泛型接口代碼

interface IDictionary﹤K, V﹥  {  }

類之間的繼承規則同樣適用于接口:

C# 泛型接口代碼

interface IMonth﹤T﹥ { }   interface IJanuary : IMonth﹤int﹥ { }  //No error  interface IFebruary﹤T﹥ : IMonth﹤int﹥ { }  //No error  interface IMarch﹤T﹥: IMonth﹤T﹥ { }//No error  //interface IApril﹤T﹥  : IMonth﹤T, U﹥ {}  //Error

如果泛型接口為逆變的,即僅使用其類型參數作為返回值,則此泛型接口可以從非泛型接口繼承。在 .NET Framework 類庫中,IEnumerable﹤T﹥ 從 IEnumerable 繼承,因為 IEnumerable﹤T﹥ 僅在 GetEnumerator 的返回值和當前屬性 getter 中使用 T。

具體類可以實現已關閉的構造接口,如下所示:

C# 泛型接口代碼

interface IBaseInterface﹤T﹥ { }   class SampleClass : IBaseInterface﹤string﹥ { }

只要類參數列表提供了接口必需的所有參數,泛型類便可以實現泛型接口或已關閉的構造接口,如下所示:

C# 泛型接口代碼

interface IBaseInterface1﹤T﹥ { }  interface IBaseInterface2﹤T, U﹥ { }   class SampleClass1﹤T﹥ :   IBaseInterface1﹤T﹥ { }//No error  class SampleClass2﹤T﹥ :   IBaseInterface2﹤T, string﹥ { }//No error

對于泛型類、泛型結構或泛型接口中的方法,控制方法重載的規則相同。

感謝各位的閱讀,以上就是“C#泛型接口實例應用”的內容了,經過本文的學習后,相信大家對C#泛型接口實例應用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

天峨县| 达拉特旗| 承德市| 安阳市| 海伦市| 龙井市| 竹溪县| 昌宁县| 福鼎市| 祥云县| 阿鲁科尔沁旗| 文成县| 左贡县| 永年县| 芜湖县| 甘德县| 延庆县| 聊城市| 新安县| 鄄城县| 巴彦县| 宝清县| 山丹县| 同德县| 宁远县| 灯塔市| 若羌县| 金昌市| 井研县| 和顺县| 思南县| 蒙城县| 博乐市| 牡丹江市| 于田县| 嘉祥县| 玉田县| 澄迈县| 鄂托克前旗| 饶平县| 石渠县|