반응형
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
- sstream
- class_template
- data_structure
- STL
- singly Linked List
- template
- 알고리즘
- 13305
- 문법
- 구현
- Algorithm
- red-black tree
- Articulation_Point
- 예제
- Critical_Path_Analysis
- qsort
- Pair
- 총정리
- function_template
- c++
- Biconnected_Component
- 5397
- deletion
- connected_component
- '0'
- 백준
- 자료구조
- sort
- list
- Heap
Archives
- Today
- Total
- Today
- Total
- 방명록
목록delete (1)
어제의 나보다 성장한 오늘의 나
[c / c++] new / malloc / calloc /realloc 총 정리 & 예제
예전에 c에서는 malloc을 사용하고 c++는 new를 사용한다고 배웠었는데, 왜 그럴까?? malloc과 new 는 모두 메모리를 할당하는 함수이다. c에서는 malloc을 , c++ 에서는 malloc 과 new 모두 사용할 수 있다. 각각의 사용법과 상황에 맞는 사용법에 대해 정리해보았다. 헤더 파일 malloc / calloc / realloc : #include new : 없음. Malloc //malloc char * p_char; p_char = (char*)malloc(sizeof(char)); // char 메모리 할당 free(p_char); char * p_chararr; p_chararr = (char*)malloc(sizeof(char) * 10); //char_array 메모리..
c++/문법
2022. 2. 12. 14:33