일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html id
- #자바상속#자바이즈어#is~a
- hyperledger transaction
- #bubbleSort
- 하이퍼레저패브릭
- #2차원배열
- html plug-in
- mac terminal command
- html5 new tag
- #1차원배열
- border-box
- #다차원포인터
- git flow
- relative path
- #android activity
- html video
- #binary
- #성적관리프로그램
- html multimedia
- #3차원배열
- #C++ 연산자함수오버로딩
- html code
- #JAVASCRIPT
- #CallByAddress
- html object
- docker example
- 토큰경제
- #C++ has~a
- html charset
- html youtube
Archives
- Today
- Total
목록#c++ template (1)
A sentimental robot
Template
템플릿 기능은 같지만 데이터 타입이 다를경우 하나로 여러개를 만족시켜주는 형태 > 다형성 1. 템플릿 함수 : 외부함수 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 #include using namespace std; template void change(T &a, T&b) { T temp; temp = a; a = b; b = temp; } int main() { int a = 3, b = 4; float c = 3.4f, d = 4.7f; char e = 'A', f = 'B'; change(a, b); cout
C++
2018. 10. 2. 13:31