반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- data_structure
- function_template
- 문법
- 예제
- class_template
- template
- 자료구조
- c++
- sort
- 백준
- 구현
- Biconnected_Component
- 13305
- STL
- red-black tree
- 알고리즘
- '0'
- Heap
- Articulation_Point
- deletion
- 5397
- qsort
- sstream
- Critical_Path_Analysis
- 총정리
- Algorithm
- connected_component
- singly Linked List
- Pair
- list
Archives
- Today
- Total
- Today
- Total
- 방명록
목록class_template (1)
어제의 나보다 성장한 오늘의 나
[c++] Template(템플릿) 총 정리 & 예제
queue를 구현 하는데 int 타입만 담는 queue만을 구현 하지 않고 string을 위한 queue, char를 위한 queue 등, 상황에 따라 여러 type을 담을 수 있는 queue를 구현 하기 위해 공부하게 되었다. 함수나 클래스가 여러 가지 타입에서 사용 될 수 있도록 함수나 클래스의 타입을 상황에 맞게 사용할 수 있도록 도와주는 것. (type : int , double , string , char 등등) 종류 함수 템플릿 (function template) 과 클래스 템플릿 (class template)으로 나뉜다. 사용법 template or template 위 처럼 여러개를 넣을 수도 있고 typename , class 모두 사용가능 하다. ① 함수 템플릿 사용법 함수 선언 temp..
c++/문법
2022. 2. 10. 18:07