일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- file access
- memory
- APP
- Encapusulation
- length
- preprocessing
- digitalRead
- Overloading
- Android
- aduino
- SERIAL
- Class
- java
- Read
- stream
- compare
- Contour
- atmega328
- UNO
- public
- parameter
- Binary
- Pointer
- Unity
- Barcode
- inheritance
- wpf
- flutter
- mfc
- sensor
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