priority_queue::pop (STL/CLR)
Proirity 가장 높은 요소를 제거합니다.
void pop();
설명
멤버 함수는 비어 있어야 제어 된 시퀀스의 우선 순위가 가장 높은 요소를 제거 합니다.한 요소 뒤에 큐를 줄이기 위해 사용 합니다.
예제
// cliext_priority_queue_pop.cpp
// compile with: /clr
#include <cliext/queue>
typedef cliext::priority_queue<wchar_t> Mypriority_queue;
int main()
{
Mypriority_queue c1;
c1.push(L'a');
c1.push(L'b');
c1.push(L'c');
// display contents " a b c"
for each (wchar_t elem in c1.get_container())
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// pop an element and redisplay
c1.pop();
for each (wchar_t elem in c1.get_container())
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
요구 사항
헤더: < cliext/큐 >
네임 스페이스: cliext