반응형
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 | 31 |
Tags
- javascript
- 리트코드
- web
- dp
- Level3
- 프로그래머스
- 고득점Kit
- 웹프로그래밍
- 파이썬
- Doitvue.js입문
- Medium
- 자바스크립트
- VUE
- CS
- Level1
- Level2
- react
- 동적계획법
- 카카오
- typescript
- 리액트
- 백준
- LeetCode
- sql
- 프로그래밍
- OS
- 코테연습
- python
- 배열
- C++
Archives
- Today
- Total
[c++] dynamic memory allocation (동적 메모리 할당) 본문
반응형
배열 동적 메모리 할당
int* p; int length, total = 0; float average; cin >> length; p = new int[length]; //동적 메모리 할당 for (auto i = 0; i < length; i++) cin >> *(p + i); for (auto i = 0; i < length; ++i) total = total + p[i]; average = total / (double)length; cout << total << endl; cout << average << endl; delete[] p;
포인터 동적 메모리 할당
int* p = new int; //할당 *p = 486; cout << *p << endl; delete p;//해지 return 0;
포인터에 동적 메모리 할당한 경우 메모리를 해제해도 어딘가를 가르키는 포인터 값은 남아 있음 null값을 넣어서 초기화 해줘야 됨
short* p = new short[100]; cout << p << endl; delete[] p; p = NULL; cout << p << endl;
반응형
'객체지향프로그래밍 (C++)' 카테고리의 다른 글
[c++] string(문자열) (0) | 2020.07.06 |
---|---|
[c++] dynamic memory allocation (동적 메모리 할당) ② (0) | 2020.07.06 |
[c++] lamda function (람다 함수) (0) | 2020.07.03 |
[c++] function(함수) (0) | 2020.07.02 |
[c++] reference (참조) (0) | 2020.07.02 |
Comments