如何:从一个STL/CLR容器的转换到.NET集合
本主题演示如何将 STL/CLR 容器转换为其等效的 .NET 集合。 例如,我们演示如何将 STL/CLR 向量 转换为 .NET ICollection<T> 以及如何转换 STL/CLR 映射 转换为 .NET IDictionary<TKey, TValue>,但是,该过程为所有集合和容器是类似的。
创建从容器的集合
使用下列方法之一:
将一部分的容器,调用 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);
}
}
在此示例中,我们创建 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);
}
}