제네릭 사용(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