std::list<T,Allocator>:: begin, std::list<T,Allocator>:: cbegin
From cppreference.net
C++
Containers library
|
(C++17)
|
||||
| Sequence | ||||
|
(C++11)
|
||||
|
(C++26)
|
||||
|
(C++26)
|
||||
|
(C++11)
|
||||
| Associative | ||||
| Unordered associative | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Adaptors | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
| Views | ||||
|
(C++20)
|
||||
|
(C++23)
|
||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::list
| Member functions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Non-member functions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Deduction guides (C++17) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
iterator begin
(
)
;
|
(1) |
(C++11부터 noexcept)
(C++26부터 constexpr) |
|
const_iterator begin
(
)
const
;
|
(2) |
(C++11부터 noexcept)
(C++26부터 constexpr) |
|
const_iterator cbegin
(
)
const
noexcept
;
|
(3) |
(C++11부터)
(C++26부터 constexpr) |
* this 의 첫 번째 요소에 대한 반복자를 반환합니다.
만약 * this 가 비어 있으면, 반환된 반복자는 end() 와 같을 것입니다.
목차 |
반환값
첫 번째 요소에 대한 반복자.
복잡도
상수.
참고 사항
libc++ 백포트는
cbegin()
를 C++98 모드로 제공합니다.
예제
이 코드 실행
#include <algorithm> #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; // 리스트 출력 std::for_each(nums.begin(), nums.end(), [](const int n) { std::cout << n << ' '; }); std::cout << '\n'; // 리스트 nums의 모든 정수를 합산하여 결과만 출력 std::cout << "Sum of nums: " << std::accumulate(nums.begin(), nums.end(), 0) << '\n'; // 리스트 fruits의 첫 번째 과일을 출력하며, 존재 여부 확인 if (!fruits.empty()) std::cout << "First fruit: " << *fruits.begin() << '\n'; if (empty.begin() == empty.end()) std::cout << "list 'empty' is indeed empty.\n"; }
출력:
1 2 4 8 16 Sum of nums: 31 First fruit: orange list 'empty' is indeed empty.
참고 항목
|
(C++11)
|
끝을 가리키는 반복자를 반환함
(public member function) |
|
(C++11)
(C++14)
|
컨테이너나 배열의 시작을 가리키는 반복자를 반환함
(function template) |