다음을 통해 공유


priority_queue::value_compare (STL/CLR)

두 값에 대 한 순서 지정 대리자입니다.

    binary_delegate<value_type, value_type, int> value_compare;

설명

첫 번째 인수가 되기 전에 두 번째 정렬 여부를 결정 하는 대리자에 대 한 동의어입니다.

예제

// cliext_priority_queue_value_compare.cpp 
// compile with: /clr 
#include <cliext/queue> 
 
typedef cliext::priority_queue<wchar_t> Mypriority_queue; 
int main() 
    { 
    Mypriority_queue c1; 
    Mypriority_queue::value_compare^ vcomp = c1.value_comp(); 
 
    System::Console::WriteLine("compare(L'a', L'a') = {0}", 
        vcomp(L'a', L'a')); 
    System::Console::WriteLine("compare(L'a', L'b') = {0}", 
        vcomp(L'a', L'b')); 
    System::Console::WriteLine("compare(L'b', L'a') = {0}", 
        vcomp(L'b', L'a')); 
    System::Console::WriteLine(); 
 
// test a different ordering rule 
    Mypriority_queue c2 = cliext::greater<wchar_t>(); 
    vcomp = c2.value_comp(); 
 
    System::Console::WriteLine("compare(L'a', L'a') = {0}", 
        vcomp(L'a', L'a')); 
    System::Console::WriteLine("compare(L'a', L'b') = {0}", 
        vcomp(L'a', L'b')); 
    System::Console::WriteLine("compare(L'b', L'a') = {0}", 
        vcomp(L'b', L'a')); 
    return (0); 
    } 
 
  

요구 사항

헤더: < cliext/큐 >

네임 스페이스: cliext

참고 항목

참조

priority_queue (STL/CLR)

priority_queue::value_comp (STL/CLR)

priority_queue::value_type (STL/CLR)