일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- c++
- memory
- wpf
- mfc
- public
- stream
- file access
- digitalRead
- aduino
- flutter
- preprocessing
- Class
- SERIAL
- sensor
- Android
- atmega328
- parameter
- java
- Read
- Encapusulation
- Contour
- Unity
- UNO
- 3D
- inheritance
- compare
- length
- Barcode
- Pointer
- APP
Archives
- Today
- Total
목록& (1)
폴크(FOLC)

1. 포인터 # 메모리 주소를 가지고 있는 변수 # new 키워드 사용 # & 연산자와 new 키워드에 return 값을 갖음 ( 주소 값 ) # 동일한 자료형을 물리적인 메모리 공간에 연속으로 할당 받아서 이용한다. # 구조체/클래스를 이용해서 생성한 Object의 주소를 의미한다. > int iDataValue = 100; > int *pPointer_INT = &iDataValue; > float fDataValue = 1234.f; > float *pPoint_FLOAT = &fDataValue; > struct STRUCTTestSampleData > { > bool a; int b; float c; > } > > STRUCTTestSampleData *pPointer_STRUCT = new S..
C, C++, MFC/C, C++, MFC 테크닉
2021. 7. 2. 10:40