Udostępnij za pośrednictwem


queue::assign (STL/CLR)

Zastępuje wszystkie elementy.

    void assign(queue<Value, Container>% right);

Parametry

  • prawo
    Karta kontenera do wstawienia.

Uwagi

Funkcja Członkowskie przypisuje right.get_container() do kontenera podstawowej.Służy do zmiany całą zawartość kolejki.

Przykład

// cliext_queue_assign.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 initial contents " a b c" 
    for each (wchar_t elem in c1.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// assign a repetition of values 
    Myqueue c2; 
    c2.assign(c1); 
    for each (wchar_t elem in c2.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: < cliext/kolejki >

Obszar nazw: cliext

Zobacz też

Informacje

queue (STL/CLR)

queue::operator= (STL/CLR)