Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- stl
- 컴퓨터 그래픽스
- queue
- list
- arduino compiler
- directx
- C언어
- Algorithm
- vector
- Arduino
- 아두이노
- 아두이노 소스
- WinAPI
- c++
- 통계학
- Deque
- LineTracer
- Visual Micro
- 자료구조
- priority_queue
- Stack
- 시스템프로그래밍
- html
- 수광 소자
- 아두이노 컴파일러
- 운영체제
- map
- 라인트레이서
- Array
- set
Archives
- Today
- Total
Kim's Programming
Array - begin() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include<array> #include<iostream> #define Max_Size 10 void print(std::array<int, Max_Size> Target_Array) { for (std::array<int, Max_Size>::iterator IterPos = Target_Array.begin(); IterPos != Target_Array.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::array<int, Max_Size > Array = { 1,3,5,7,9,11,13,15,17,19}; print(Array); std::cout << *Array.begin() << std::endl; print(Array); } | cs |
내용)
begin()함수는 array에서 첫번째를 가리키는 이터레이터를 리턴합니다.
결과)
'STL - Container > Container - Array' 카테고리의 다른 글
Array - cend() (0) | 2016.01.28 |
---|---|
Array - cbegin() (0) | 2016.01.28 |
Array - back() (0) | 2016.01.28 |
Array - at() (0) | 2016.01.28 |
Array - assign() (0) | 2016.01.28 |