collection_adapter::end (STL/CLR)

指定受控制序列的結尾。

    iterator end();

備註

成員函式會傳回輸入的 iterator 受控制序列結尾之外,只要該點為單位。

範例

// cliext_collection_adapter_end.cpp 
// compile with: /clr 
#include <cliext/adapter> 
#include <cliext/deque> 
 
typedef cliext::collection_adapter< 
    System::Collections::ICollection> Mycoll; 
int main() 
    { 
    cliext::deque<wchar_t> d1; 
    d1.push_back(L'a'); 
    d1.push_back(L'b'); 
    d1.push_back(L'c'); 
    Mycoll c1(%d1); 
 
// display initial contents " a b c" 
    Mycoll::iterator it = c1.begin(); 
    for (; it != c1.end(); ++it) 
        System::Console::Write(" {0}", *it); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/介面卡 >

Namespace: cliext

請參閱

參考

collection_adapter (STL/CLR)

collection_adapter::begin (STL/CLR)