priority_queue::generic_value (STL/CLR)
Typ elementu dla wykorzystania rodzajowy interfejs dla kontenera.
typedef GValue generic_value;
Uwagi
Typ opisuje obiektu typu GValue , który opisuje wartość elementu przechowywane do użycia rodzajowy interfejs dla tej klasy pojemnika szablonu.(GValue is either value_type or value_type^ if value_type is a ref type.)
Przykład
// cliext_priority_queue_generic_value.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();
// get interface to container
Mypriority_queue::generic_container^ gc1 = %c1;
for each (wchar_t elem in gc1->get_container())
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// display in priority order using generic_value
for (; !gc1->empty(); gc1->pop())
{
Mypriority_queue::generic_value elem = gc1->top();
System::Console::Write(" {0}", elem);
}
System::Console::WriteLine();
return (0);
}
Wymagania
Nagłówek: < cliext/kolejki >
Obszar nazw: cliext