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
- 자료구조
- directx
- vector
- Algorithm
- map
- stl
- 통계학
- 컴퓨터 그래픽스
- WinAPI
- Visual Micro
- Arduino
- c++
- 아두이노 컴파일러
- list
- set
- 운영체제
- html
- arduino compiler
- Deque
- LineTracer
- Stack
- 아두이노 소스
- 수광 소자
- 시스템프로그래밍
- C언어
- queue
- 라인트레이서
- 아두이노
- Array
Archives
- Today
- Total
Kim's Programming
Set - Operator '=' 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include<set> #include<iostream> void print(std::set<int> Target_Set) { for (std::set<int>::iterator IterPos = Target_Set.begin(); IterPos != Target_Set.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::set<int> Set = { 1,3,5,7,9,11 }; std::set<int> Set2; print(Set); print(Set2); Set2 = Set; print(Set); print(Set2); } | cs |
내용)
=연산자는 set의 데이터를 복사합니다. x=y인 경우 set x에 set y의 데이터를 복사하며 기존의 set x의 데이터는 삭제됩니다.
결과)
'STL - Container > Container - Set' 카테고리의 다른 글
Set - rend() (0) | 2016.02.01 |
---|---|
Set - rbegin() (0) | 2016.02.01 |
Set - value_comp (0) | 2016.02.01 |
Set - upper_bound() (0) | 2016.02.01 |
Set - swap() (0) | 2016.02.01 |