hash_map::to_array (STL/CLR)
제어 되는 시퀀스를 새 배열에 복사합니다.
cli::array<value_type>^ to_array();
설명
멤버 함수가 제어 된 시퀀스를 포함 하는 배열을 반환 합니다.이 배열 형태로 제어 되는 시퀀스의 복사본을 가져올 수 있습니다.
예제
// cliext_hash_map_to_array.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_map<wchar_t, int> Myhash_map;
int main()
{
Myhash_map c1;
c1.insert(Myhash_map::make_value(L'a', 1));
c1.insert(Myhash_map::make_value(L'b', 2));
c1.insert(Myhash_map::make_value(L'c', 3));
// copy the container and modify it
cli::array<Myhash_map::value_type>^ a1 = c1.to_array();
c1.insert(Myhash_map::make_value(L'd', 4));
for each (Myhash_map::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// display the earlier array copy
for each (Myhash_map::value_type elem in a1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
return (0);
}
요구 사항
헤더: < cliext/hash_map >
네임 스페이스: cliext