std::vector<T,Allocator>:: begin, std::vector<T,Allocator>:: cbegin
From cppreference.net
|
iterator begin
(
)
;
|
(1) |
(C++11부터 noexcept)
(C++20부터 constexpr) |
|
const_iterator begin
(
)
const
;
|
(2) |
(C++11부터 noexcept)
(C++20부터 constexpr) |
|
const_iterator cbegin
(
)
const
noexcept
;
|
(3) |
(C++11부터)
(C++20부터 constexpr) |
* this 의 첫 번째 요소에 대한 반복자를 반환합니다.
만약 * this 가 비어있는 경우, 반환된 반복자는 end() 와 같을 것입니다.
목차 |
반환값
첫 번째 요소에 대한 반복자.
복잡도
상수.
참고 사항
libc++ 백포트는
cbegin()
를 C++98 모드로 제공합니다.
예제
이 코드 실행
#include <algorithm> #include <iostream> #include <numeric> #include <string> #include <vector> int main() { std::vector<int> nums{1, 2, 4, 8, 16}; std::vector<std::string> fruits{"orange", "apple", "raspberry"}; std::vector<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 << "vector 'empty' is indeed empty.\n"; }
출력:
1 2 4 8 16 Sum of nums: 31 First fruit: orange vector 'empty' is indeed empty.
참고 항목
|
(C++11)
|
끝을 가리키는 반복자를 반환함
(public member function) |
|
(C++11)
(C++14)
|
컨테이너나 배열의 시작을 가리키는 반복자를 반환함
(function template) |