Rodzajowy interfejsów (Podręcznik programowania C#)
Często jest to użyteczne do definiowania interfejsów dla klasy rodzajowej kolekcji lub dla klas rodzajowych, które reprezentują elementy w kolekcji.Preferencja dla klas rodzajowych jest używać interfejsów rodzajowy, takich jak IComparable<T> zamiast IComparable, w celu uniknięcia boxing i rozpakowanej operacji na typy wartości..NET Framework class library definiuje kilka interfejsów rodzajowe do użytku z klasy zbioru w System.Collections.Generic obszaru nazw.
Gdy interfejs jest określony jako ograniczenia parametru typu, można tylko typy, które implementują interfejs.Następujący kod pokazuje przykład SortedList<T> klasy, która wynika z GenericList<T> klasy.Aby uzyskać więcej informacji, zobacz Wprowadzenie do generyczne (Podręcznik programowania C#).SortedList<T>Dodaje ograniczenia where T : IComparable<T>.Umożliwia to BubbleSort metodę w SortedList<T> Aby użyć rodzajową CompareTo metody na elementy listy.W tym przykładzie elementy listy są prostą klasę Person, który implementuje IComparable<Person>.
//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");
}
}
Wiele interfejsów mogą być określone jako ograniczenia dla jednego typu, w następujący sposób:
class Stack<T> where T : System.IComparable<T>, IEnumerable<T>
{
}
Interfejs można określić więcej niż jeden parametr typu, w następujący sposób:
interface IDictionary<K, V>
{
}
Reguły dziedziczenie, które stosuje się do klas stosuje się także do interfejsów:
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
Interfejsy rodzajowy może odziedziczyć interfejsów nierodzajową rodzajowy interfejs jest antyaktywa variant, co oznacza, że tylko używa jej parametr typu jako wartości zwracanej.W.NET Framework class library, IEnumerable<T> dziedziczy z IEnumerable ponieważ IEnumerable<T> używa tylko T w wartości zwracanej z GetEnumerator i w Current właściwości getter.
Konkretnych klas można zaimplementować zamknięte konstruowanej interfejsów, w następujący sposób:
interface IBaseInterface<T> { }
class SampleClass : IBaseInterface<string> { }
Klas rodzajowych można zaimplementować rodzajowy lub zamkniętych interfejsów skonstruowane tak długo, jak lista parametrów klasy dostaw wszystkie argumenty wymagane przy użyciu interfejsu, w następujący sposób:
interface IBaseInterface1<T> { }
interface IBaseInterface2<T, U> { }
class SampleClass1<T> : IBaseInterface1<T> { } //No error
class SampleClass2<T> : IBaseInterface2<T, string> { } //No error
Zasady, że przeciążenia metody kontroli są takie same dla metod klas rodzajowych, strukturach rodzajowy lub rodzajowy interfejsów.Aby uzyskać więcej informacji, zobacz Metody rodzajowe (Podręcznik programowania C#).
Zobacz też
Informacje
Wprowadzenie do generyczne (Podręcznik programowania C#)