使用泛型 (C++/CLI)
其中一種所撰寫的泛型。NET 語言不得使用於其他。NET 語言。 樣板的情況下,在已編譯的組譯碼中的泛用仍保留泛用。 因此,其中一個可能具現化泛型型別不同的組譯碼中,即使是在不同的語言,比泛型型別所定義的組譯碼。
備註
如需詳細資訊,請參閱:
範例
描述
這個範例會顯示在 C# 中定義泛型類別。
程式碼
// consuming_generics_from_other_NET_languages.cs
// compile with: /target:library
// a C# program
public class CircularList<ItemType> {
class ListNode {
public ItemType m_item;
public ListNode next;
public ListNode(ItemType item) {
m_item = item;
}
}
ListNode first, last;
public CircularList() {}
public void Add(ItemType item) {
ListNode newnode = new ListNode(item);
if (first == null) {
first = last = newnode;
first.next = newnode;
last.next = first;
}
else {
newnode.next = first;
first = newnode;
last.next = first;
}
}
public void Remove(ItemType item) {
ListNode iter = first;
if (first.m_item.Equals( item )) {
first =
last.next = first.next;
}
for ( ; iter != last ; iter = iter.next )
if (iter.next.m_item.Equals( item )) {
if (iter.next == last)
last = iter;
iter.next = iter.next.next;
return;
}
}
public void PrintAll() {
ListNode iter = first;
do {
System.Console.WriteLine( iter.m_item );
iter = iter.next;
} while (iter != last);
}
}
範例
描述
本範例會使用在 C# 中所撰寫的組譯碼。
程式碼
// consuming_generics_from_other_NET_languages_2.cpp
// compile with: /clr
#using <consuming_generics_from_other_NET_languages.dll>
using namespace System;
class NativeClass {};
ref class MgdClass {};
int main() {
CircularList<int>^ circ1 = gcnew CircularList<int>();
CircularList<MgdClass^>^ circ2 = gcnew CircularList<MgdClass^>();
for (int i = 0 ; i < 100 ; i += 10)
circ1->Add(i);
circ1->Remove(50);
circ1->PrintAll();
}
Output
90
80
70
60
40
30
20
10