共用方式為


如何:從 STL/CLR 容器轉換為 .NET 集合

本主題說明如何將 STL/CLR 容器轉換為其相等的 .NET 集合。 例如,我們會示範如何將 STL/CLR 向量轉換成 .NETICollection<T>,以及如何將 STL/CLR 對應轉換成 .NETIDictionary<TKey,TValue>,但程式適用於所有集合和容器。

從容器建立集合

  1. 使用下列其中一種方法:

    • 若要轉換容器的一部分,請呼叫 make_collection 函式,並傳遞 STL/CLR 容器的開頭反覆運算器和結束反覆運算器,以複製到 .NET 集合。 此函式範本會採用 STL/CLR 反覆運算器作為範本自變數。 第一個範例示範這個方法。

    • 若要轉換整個容器,請將容器轉換成適當的 .NET 集合介面或介面集合。 第二個範例示範這個方法。

範例

在此範例中,我們會建立 STL/CLR vector ,並在其中新增 5 個元素。 然後,我們會藉由呼叫 make_collection 函式來建立 .NET 集合。 最後,我們會顯示新建立集合的內容。

// cliext_convert_vector_to_icollection.cpp
// compile with: /clr

#include <cliext/adapter>
#include <cliext/vector>

using namespace cliext;
using namespace System;
using namespace System::Collections::Generic;

int main(array<System::String ^> ^args)
{
    cliext::vector<int> primeNumbersCont;
    primeNumbersCont.push_back(2);
    primeNumbersCont.push_back(3);
    primeNumbersCont.push_back(5);
    primeNumbersCont.push_back(7);
    primeNumbersCont.push_back(11);

    System::Collections::Generic::ICollection<int> ^iColl =
        make_collection<cliext::vector<int>::iterator>(
            primeNumbersCont.begin() + 1,
            primeNumbersCont.end() - 1);

    Console::WriteLine("The contents of the System::Collections::Generic::ICollection are:");
    for each (int i in iColl)
    {
        Console::WriteLine(i);
    }
}
The contents of the System::Collections::Generic::ICollection are:
3
5
7

在此範例中,我們會建立 STL/CLR map ,並在其中新增 5 個元素。 然後,我們會建立 .NET IDictionary<TKey,TValue> ,並將 直接指派 map 給它。 最後,我們會顯示新建立集合的內容。

// cliext_convert_map_to_idictionary.cpp
// compile with: /clr

#include <cliext/adapter>
#include <cliext/map>

using namespace cliext;
using namespace System;
using namespace System::Collections::Generic;

int main(array<System::String ^> ^args)
{
    cliext::map<float, int> ^aMap = gcnew cliext::map<float, int>;
    aMap->insert(cliext::make_pair<float, int>(42.0, 42));
    aMap->insert(cliext::make_pair<float, int>(13.0, 13));
    aMap->insert(cliext::make_pair<float, int>(74.0, 74));
    aMap->insert(cliext::make_pair<float, int>(22.0, 22));
    aMap->insert(cliext::make_pair<float, int>(0.0, 0));

    System::Collections::Generic::IDictionary<float, int> ^iDict = aMap;

    Console::WriteLine("The contents of the IDictionary are:");
    for each (KeyValuePair<float, int> ^kvp in iDict)
    {
        Console::WriteLine("Key: {0:F} Value: {1}", kvp->Key, kvp->Value);
    }
}
The contents of the IDictionary are:
Key: 0.00 Value: 0
Key: 13.00 Value: 13
Key: 22.00 Value: 22
Key: 42.00 Value: 42
Key: 74.00 Value: 74

另請參閱

STL/CLR 程式庫參考
如何:從 .NET 集合轉換為 STL/CLR 容器
range_adapter (STL/CLR)