使用泛型 (C++/CLI)

以一种 .NET 语言创作的一般能用于其他 .NET 语言。 不同于模板,泛型在已编译程序集仍可以将泛型。 因此,一个用于与泛型类型定义的程序集可以实例化泛型类型不同的程序集甚至不同的语言。

备注

有关更多信息,请参见:

示例

d38y03h1.collapse_all(zh-cn,VS.110).gif说明

此示例在 c# 中显示所定义的泛型类。

d38y03h1.collapse_all(zh-cn,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(zh-cn,VS.110).gif说明

此示例使用用 C# 编写的程序集。

d38y03h1.collapse_all(zh-cn,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(zh-cn,VS.110).gifOutput

90
80
70
60
40
30
20
10

请参见

其他资源

泛型(C++ 组件扩展)