queue::assign (STL/CLR)
取代所有的項目。
void assign(queue<Value, Container>% right);
參數
- right
若要插入容器配接器。
備註
成員函式會指派right.get_container()為基礎的容器。 您可以用它來變更佇列的整個內容。
範例
// 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);
}
需求
標頭: < cliext/佇列 >
Namespace: cliext