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
- 시스템프로그래밍
- set
- stl
- 수광 소자
- 아두이노
- c++
- C언어
- directx
- 자료구조
- 통계학
- Visual Micro
- Algorithm
- Deque
- priority_queue
- LineTracer
- vector
- arduino compiler
- html
- Array
- map
- queue
- 아두이노 컴파일러
- 아두이노 소스
- WinAPI
- 라인트레이서
- Arduino
- 운영체제
- Stack
- list
- 컴퓨터 그래픽스
Archives
- Today
- Total
Kim's Programming
List - front() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include<list> #include<iostream> void print(std::list<int> Target_List) { for (std::list<int>::iterator IterPos = Target_List.begin(); IterPos != Target_List.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::list<int> List = { 1,2,3,4,100,101,102,103 }; print(List); std::cout << List.front() << std::endl; print(List); } | cs |
내용)
list에서 제일 앞에 있는 데이터를 리턴합니다.
결과)
'STL - Container > Container - List' 카테고리의 다른 글
List - max_size() (0) | 2016.01.29 |
---|---|
List - insert() (0) | 2016.01.29 |
List - erase() (0) | 2016.01.29 |
List - end() (0) | 2016.01.29 |
List - empty() (0) | 2016.01.29 |