다음을 통해 공유


deque::rend (STL/CLR)

역방향 제어되는 시퀀스의 끝을 지정합니다.

    reverse_iterator rend();

설명

제어 되는 시퀀스의 시작 부분 바로 뒤를 가리키는 역방향 반복기는 멤버 함수를 반환합니다.따라서 역방향 시퀀스의 end를 지정합니다.이를 통해 역순으로 표시된 제어되는 시퀀스의 current 끝을 지정하는 반복기를 가져올 수 있지만 제어되는 시퀀스의 길이가 변경되면 상태가 변경될 수 있습니다.

예제

// cliext_deque_rend.cpp 
// compile with: /clr 
#include <cliext/deque> 
 
int main() 
    { 
    cliext::deque<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// inspect first two items 
    cliext::deque<wchar_t>::reverse_iterator rit = c1.rend(); 
    --rit; 
    System::Console::WriteLine("*-- --rend() = {0}", *--rit); 
    System::Console::WriteLine("*--rend() = {0}", *++rit); 
 
// alter first two items and reinspect 
    *--rit = L'x'; 
    *++rit = L'y'; 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

요구 사항

헤더: < cliext/있지 않은 deque >

네임 스페이스: cliext

참고 항목

참조

deque (STL/CLR)

deque::begin (STL/CLR)

deque::end (STL/CLR)

deque::rbegin (STL/CLR)