일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- length
- Encapusulation
- APP
- Barcode
- Binary
- compare
- UNO
- Contour
- aduino
- mfc
- sensor
- java
- digitalRead
- Overloading
- Unity
- SERIAL
- inheritance
- Class
- wpf
- public
- preprocessing
- file access
- stream
- atmega328
- memory
- Read
- Pointer
- parameter
- flutter
- Android
Archives
- Today
- Total
목록Vector (1)
폴크(FOLC)
C++ 테크닉 3
1. 반복문 - STL 연동 # 특정한 부분의 코드가 반복적으로 수행한다. # vector, map 과의 연동 방식 ( STL 자체 iterater 존재 ) # for, while, do while 키워드와 조건식만 다르고 { } 함수 안에 내용은 동일하다. > vector vecData; > unsigned int iSumValue; > for(size_t i=0; i { > iSumValue += vecData[i]; > } > map mapData; > unsigned int iSumValue; > for(size_t i=0; i { > iSumValue += vecData[i].second; > } > vec..
C, C++, MFC/C, C++, MFC 테크닉
2021. 7. 2. 10:23