다음을 통해 공유


제네릭 사용(C++/CLI)

Generics를 하나 작성 한입니다.NET 언어를 다른 위치에 사용할 수 있습니다.NET 언어입니다.템플릿과 달리 컴파일된어셈블리에 일반 제네릭 여전히 남아 있습니다.따라서, 하나제네릭 형식다른어셈블리와제네릭 형식정의 된어셈블리이외의 다른 언어로를 인스턴스화할 수 있습니다.

설명

자세한 내용은 다음을 참조하십시오.

예제

d38y03h1.collapse_all(ko-kr,VS.110).gif설명

이 예제에서는 C#에 정의 된 제네릭클래스를 보여 줍니다.

d38y03h1.collapse_all(ko-kr,VS.110).gif코드

// 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);
   }
}

예제

d38y03h1.collapse_all(ko-kr,VS.110).gif설명

이 예제 C#에서 만든어셈블리를 사용 합니다.

d38y03h1.collapse_all(ko-kr,VS.110).gif코드

// 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();
}

d38y03h1.collapse_all(ko-kr,VS.110).gifOutput

90
80
70
60
40
30
20
10

참고 항목

기타 리소스

제네릭(C++ 구성 요소 확장)