반응형
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 |
Tags
- data_structure
- red-black tree
- c++
- class_template
- 문법
- singly Linked List
- '0'
- Articulation_Point
- Critical_Path_Analysis
- sort
- qsort
- 총정리
- 13305
- Algorithm
- connected_component
- sstream
- Heap
- 알고리즘
- 5397
- 예제
- STL
- function_template
- 구현
- list
- 백준
- deletion
- 자료구조
- Biconnected_Component
- template
- Pair
Archives
- Today
- Total
- Today
- Total
- 방명록
목록Free (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