共用方式為


end

擷取 Iterator 至之後的指定容器的最後一個項目的項目。

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]。

需求

標題: <iterator>

命名空間: std

請參閱

參考

<iterator>

begin