multimap::rend (STL/CLR)
역방향 제어되는 시퀀스의 끝을 지정합니다.
reverse_iterator rend();
설명
제어 되는 시퀀스의 시작 부분 바로 뒤를 가리키는 역방향 반복기는 멤버 함수를 반환합니다.따라서 역방향 시퀀스의 end를 지정합니다.이를 통해 역순으로 표시된 제어되는 시퀀스의 current 끝을 지정하는 반복기를 가져올 수 있지만 제어되는 시퀀스의 길이가 변경되면 상태가 변경될 수 있습니다.
예제
// cliext_multimap_rend.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::multimap<wchar_t, int> Mymultimap;
int main()
{
Mymultimap c1;
c1.insert(Mymultimap::make_value(L'a', 1));
c1.insert(Mymultimap::make_value(L'b', 2));
c1.insert(Mymultimap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Mymultimap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// inspect first two items in reversed sequence
Mymultimap::reverse_iterator rit = c1.rend();
--rit;
--rit;
System::Console::WriteLine("*-- --rend() = [{0} {1}]",
rit->first, rit->second);
++rit;
System::Console::WriteLine("*--rend() = [{0} {1}]",
rit->first, rit->second);
return (0);
}
요구 사항
헤더: < cliext/지도 >
네임 스페이스: cliext