반응형
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 |
Tags
- STL
- 예제
- function_template
- red-black tree
- qsort
- Critical_Path_Analysis
- 5397
- 13305
- Algorithm
- Pair
- 구현
- class_template
- template
- sort
- 백준
- Articulation_Point
- c++
- 문법
- deletion
- connected_component
- sstream
- '0'
- 자료구조
- singly Linked List
- Biconnected_Component
- 알고리즘
- 총정리
- Heap
- data_structure
- list
Archives
- Today
- Total
- Today
- Total
- 방명록
목록function_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