共用方式為


end

擷取迭代器,指向在指定的容器中最後一個項目後面的項目。

template<class Container>
    auto end(Container& cont) 
        -> decltype(cont.end());
template<class Container>
    auto end(const Container& cont) 
        -> decltype(cont.end());
template<class Ty, class Size>
    Ty *end(Ty (&array)[Size]); 

參數

  • cont
    容器。

  • array
    Ty 類型的物件陣列。

傳回值

前兩個樣板函式會傳回 cont.end() (第一個函式是非常數,而第二個函式是常數)。

第三個樣板函式會傳回 array + Size。

備註

如需程式碼範例,請參閱begin

需求

標頭:<iterator>

命名空間: std

請參閱

參考

<iterator>

begin

cbegin

cend