std::forward_list<T,Allocator>:: begin, std::forward_list<T,Allocator>:: cbegin
From cppreference.net
<
cpp
|
container
|
forward list
|
iterator begin
(
)
noexcept
;
|
(1) |
(C++11부터)
(C++26부터 constexpr) |
|
const_iterator begin
(
)
const
noexcept
;
|
(2) |
(C++11부터)
(C++26부터 constexpr) |
|
const_iterator cbegin
(
)
const
noexcept
;
|
(3) |
(C++11부터)
(C++26부터 constexpr) |
* this 의 첫 번째 요소에 대한 반복자를 반환합니다.
만약 * this 가 비어있다면, 반환된 반복자는 end() 와 같을 것입니다.
목차 |
반환값
첫 번째 요소에 대한 반복자.
복잡도
상수.
예제
이 코드 실행
#include <algorithm> #include <iostream> #include <numeric> #include <string> #include <forward_list> int main() { std::forward_list<int> nums{1, 2, 4, 8, 16}; std::forward_list<std::string> fruits{"orange", "apple", "raspberry"}; std::forward_list<char> empty; // forward_list 출력 std::for_each(nums.begin(), nums.end(), [](const int n) { std::cout << n << ' '; }); std::cout << '\n'; // forward_list nums의 모든 정수를 합산하여 결과만 출력 std::cout << "Sum of nums: " << std::accumulate(nums.begin(), nums.end(), 0) << '\n'; // forward_list fruits의 첫 번째 과일을 출력하며, 존재하는지 확인 if (!fruits.empty()) std::cout << "First fruit: " << *fruits.begin() << '\n'; if (empty.begin() == empty.end()) std::cout << "forward_list 'empty' is indeed empty.\n"; }
출력:
1 2 4 8 16 Sum of nums: 31 First fruit: orange forward_list 'empty' is indeed empty.
참고 항목
|
끝을 가리키는 반복자를 반환함
(public member function) |
|
|
(C++11)
(C++14)
|
컨테이너나 배열의 시작을 가리키는 반복자를 반환함
(function template) |