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
- priority_queue
- c++
- 통계학
- list
- queue
- 아두이노 소스
- 라인트레이서
- Arduino
- html
- 운영체제
- Algorithm
- 아두이노
- LineTracer
- Stack
- 자료구조
- directx
- Visual Micro
- vector
- Array
- stl
- arduino compiler
- set
- 아두이노 컴파일러
- C언어
- map
- Deque
- 수광 소자
- 시스템프로그래밍
- WinAPI
- 컴퓨터 그래픽스
Archives
- Today
- Total
Kim's Programming
Map - Operator '=' 본문
소스)
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 | #include<iostream> #include<string> #include<map> void print(std::map<int, std::string> Target_Map) { for (std::map<int, std::string>::iterator IterPos = Target_Map.begin(); IterPos != Target_Map.end(); ++IterPos) std::cout << "Key->" << IterPos->first << ", Value->" << IterPos->second << " "; std::cout << std::endl; } void print(std::pair<int, std::string> Target_Pair) { std::cout << Target_Pair.first << " " << Target_Pair.second << std::endl; } void main() { std::map<int, std::string> Map; Map[1] = "First"; Map[2] = "Second"; Map[3] = "Third"; std::map<int, std::string> Map2; print(Map); print(Map2); Map2 = Map; print(Map); print(Map2); } | cs |
내용)
=연산자는 데이터를 복사를 합니다. x=y에서 map x에 map y의 데이터를 복사하며 기존의 map x에 있던 데이터는 삭제합니다.
결과)
'STL - Container > Container - Map' 카테고리의 다른 글
Map - rbegin() (0) | 2016.02.01 |
---|---|
Map - Operator [] (0) | 2016.02.01 |
Map - max_size() (0) | 2016.02.01 |
Map - lower_bound() (0) | 2016.02.01 |
Map - key_comp() (0) | 2016.02.01 |