Namespaces
Variants

std::list<T,Allocator>:: begin, std::list<T,Allocator>:: cbegin

From fr.cppreference.net

iterator begin ( ) ;
(1) (noexcept depuis C++11)
(constexpr depuis C++26)
const_iterator begin ( ) const ;
(2) (noexcept depuis C++11)
(constexpr depuis C++26)
const_iterator cbegin ( ) const noexcept ;
(3) (depuis C++11)
(constexpr depuis C++26)

Retourne un itérateur vers le premier élément de * this .

Si * this est vide, l'itérateur retourné sera égal à end() .

range-begin-end.svg

Contenu

Valeur de retour

Itérateur vers le premier élément.

Complexité

Constante.

Notes

libc++ rétroporte cbegin() au mode C++98.

Exemple

#include <algorithm>
#include <cassert>
#include <iostream>
#include <numeric>
#include <string>
#include <list>

int main()
{
    std::list<int> nums{1, 2, 4, 8, 16};
    std::list<std::string> fruits{"orange", "apple", "raspberry"};
    std::list<char> empty;

    // Print list nums.
    std::for_each(nums.cbegin(), nums.cend(),
                  [](const int n) { std::cout << n << ' '; });
    std::cout << '\n';

    // Sum all integers in the list nums, printing only the result.
    std::cout << "Sum of nums: "
              << std::accumulate(nums.cbegin(), nums.cend(), 0) << '\n';

    // Print the first fruit in the list fruits, checking if there is any.
    if (!fruits.empty())
        std::cout << "First fruit: " << *fruits.cbegin() << '\n';

    if (empty.cbegin() == empty.cend())
        std::cout << "list ‘empty’ is indeed empty.\n";

    // Modify the first element in nums.
    *nums.begin() = 32;
    assert(*nums.cbegin() == 32);
}

Sortie :

1 2 4 8 16
Sum of nums: 31
First fruit: orange
list ‘empty’ is indeed empty.

Voir aussi

(C++11)
retourne un itérateur vers la fin
(fonction membre publique)
(C++11) (C++14)
retourne un itérateur vers le début d'un conteneur ou d'un tableau
(fonction template)