共用方式為


queue::queue (STL/CLR)

建構容器配接器物件。

    queue();
    queue(queue<Value, Container>% right);
    queue(queue<Value, Container>^ right);
    explicit queue(container_type% wrapped);

參數

  • right
    若要複製的物件。

  • 自動換行
    若要使用的包裝的容器。

備註

建構函式:

queue();

建立空的包裝的容器。 您可以用它來指定空的初始受控制的序列。

建構函式:

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

會建立一個包裝的容器,是一份right.get_container()。 您會用它來指定初始的受控制的序列是一份由佇列物件來控制序列的right。

建構函式:

queue(queue<Value, Container>^ right);

會建立一個包裝的容器,是一份right->get_container()。 您會用它來指定初始的受控制的序列是一份由佇列物件來控制序列的*right。

建構函式:

explicit queue(container_type wrapped);

使用現存的容器wrapped為包裝的容器。 您可以用它來建構佇列,以從現有的容器。

範例

// cliext_queue_construct.cpp 
// compile with: /clr 
#include <cliext/queue> 
#include <cliext/list> 
 
typedef cliext::queue<wchar_t> Myqueue; 
typedef cliext::list<wchar_t> Mylist; 
typedef cliext::queue<wchar_t, Mylist> Myqueue_list; 
int main() 
    { 
// construct an empty container 
    Myqueue c1; 
    System::Console::WriteLine("size() = {0}", c1.size()); 
 
// construct from an underlying container 
    Mylist v2(5, L'x'); 
    Myqueue_list c2(v2);     
    for each (wchar_t elem in c2.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// construct by copying another container 
    Myqueue_list c3(c2); 
    for each (wchar_t elem in c3.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// construct by copying another container through handle 
    Myqueue_list c4(%c2); 
    for each (wchar_t elem in c4.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/佇列 >

Namespace: cliext

請參閱

參考

queue (STL/CLR)

queue::assign (STL/CLR)

queue::generic_container (STL/CLR)

queue::operator= (STL/CLR)