共用方式為


list::assign (STL/CLR)

取代所有的項目。

    void assign(size_type count, value_type val);
    template<typename InIt>
        void assign(InIt first, InIt last);
    void assign(System::Collections::Generic::IEnumerable<Value>^ right);

參數

  • count
    若要插入的項目數目。

  • 第一個
    若要插入範圍的開頭。

  • last
    若要插入範圍的結尾。

  • right
    若要插入的列舉型別。

  • val
    若要插入之項目的值。

備註

第一個成員函式取代受控制的序列的重複使用count值的項目val。 您用它來填滿容器元素全都具有相同的值。

如果InIt是整數型別,第二個成員函式行為和一樣assign((size_type)first, (value_type)last)。 否則,它會取代受控制的序列的序列[first, last)。 您使用它來變更受控制序列複本另一個序列。

第三個成員函式會使用列舉值所指定的順序來取代受控制的序列right。 您可以用它來製作受控制的序列的序列,由列舉值所描述的複本。

範例

// cliext_list_assign.cpp 
// compile with: /clr 
#include <cliext/list> 
 
int main() 
    { 
    cliext::list<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(L'c'); 
 
// assign a repetition of values 
    cliext::list<wchar_t> c2; 
    c2.assign(6, L'x'); 
    for each (wchar_t elem in c2) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// assign an iterator range 
    cliext::list<wchar_t>::iterator it = c1.end(); 
    c2.assign(c1.begin(), --it); 
    for each (wchar_t elem in c2) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// assign an enumeration 
    c2.assign(   // NOTE: cast is not needed 
        (System::Collections::Generic::IEnumerable<wchar_t>^)%c1); 
    for each (wchar_t elem in c2) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/清單 >

Namespace: cliext

請參閱

參考

list (STL/CLR)

list::operator= (STL/CLR)