Queue::generic_value (STL/CLR)
Typ prvku pro použití s obecné rozhraní kontejneru.
typedef GValue generic_value;
Poznámky
Popisuje typ objekt typu GValue , který popisuje hodnoty uložené prvku pro použití obecné rozhraní pro tuto třídu šablony kontejneru.(GValue is either value_type or value_type^ if value_type is a ref type.)
Příklad
// cliext_queue_generic_value.cpp
// compile with: /clr
#include <cliext/queue>
typedef cliext::queue<wchar_t> Myqueue;
int main()
{
Myqueue 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
Myqueue::generic_container^ gc1 = %c1;
for each (wchar_t elem in gc1->get_container())
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// display in order using generic_value
for (; !gc1->empty(); gc1->pop())
{
Myqueue::generic_value elem = gc1->front();
System::Console::Write(" {0}", elem);
}
System::Console::WriteLine();
return (0);
}
Požadavky
Záhlaví: < cliext/fronty >
Obor názvů: cliext