您好,登錄后才能下訂單哦!
這篇文章主要介紹“C/C++堆區怎么應用”,在日常操作中,相信很多人在C/C++堆區怎么應用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C/C++堆區怎么應用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
malloc開辟堆區內存。頭文件stdlib.h,函數原形如下。
void*malloc(size_tsize); //返回值void指針,該指針就是開辟的內存地址,參數是開辟的字節數。
free釋放堆區開辟的內存。頭文件stdlib.h,函數原形如下。
voidfree(void*ptr); // 參數傳入需要釋放的堆區內存首地址。
程序:
#include<iostream> #include<windows.h> using namespace std; int main() { int* p = (int*)malloc(20); //void* malloc(size) 返回自void指針,參數是字節數 for (int i = 0; i < 5; i++) { p[i] = i; //*(p+i) = i; } cout << p[1] << " " << *(p + 1) << endl; if (p) { free(p); // void free(heap addr) } system("pause"); return 0; }
結果:
1 1
請按任意鍵繼續. . .
C++ 中的new和delete是運算符開辟和釋放堆區空間比C語言的malloc、free更高效,推薦使用。
返回堆區首元素的地址,可以開辟一個元素(開辟的時候可以賦值)、一維數組、二維數組。當使用new開辟二維數組的時候需要特別注意,返回的是數組指針,所以需要數組指針去接收堆區地址。
delete釋放堆區的時候數組需要加上[]
程序:
#include<iostream> #include<windows.h> using namespace std; int main() { int* p1 = new int(3); // 在堆區創建一個int類型數據,并且賦初值 // int* p2 = new int(0, 1, 2, 3, 4); // 無法初始化數組 int* p3 = new int[4]; // 在堆區創建數組,不賦初值 int(*p4)[3] = new int[2][3]; // 在堆區創建二維數組 *(p3 + 1) = 1; cout << *p1 << endl; cout << *(p3 + 1) << endl; if (p1) { delete p1; } if (p3) { delete[] p3; } if (p4) { delete[] p4; } system("pause"); return 0; }
結果:
3
1 請按任意鍵繼續. . .
內存拷貝函數,從src源地址拷貝size字節到dest目標地址
頭文件:cstring 函數原形
void*memcpy(void*dest,constvoid*src,std::size_tcount);
dest目標地址,src源地址,size拷貝的字節數
代碼:
#include<iostream> #include<string> #include<windows.h> using namespace std; int main() { int num1[5] = { 0, 1, 2, 3, 4 }; int* p = new int[5]; memcpy(p, &num1, sizeof(num1)); cout << *(p + 2) << endl; if (p) { delete[] p; } system("pause"); return 0; }
結果:
2
請按任意鍵繼續. . .
用于初始化新開辟的堆區內存,從dest目標地址開始,size個字節設置成數據ch
頭文件:cstring 函數原形
void*memset(void*dest,intch,std::size_tcount);
dest目標地址,ch需要設置的值,size字節數
程序:
#include<iostream> #include<windows.h> using namespace std; int main() { int* p = new int[5]; memset(p, 0, 5 * sizeof(int)); // 將新開辟的的堆區數組設成0 cout << *(p + 2) << endl; if (p) { delete[] p; } system("pause"); return 0; }
結果:
0
請按任意鍵繼續. . .
到此,關于“C/C++堆區怎么應用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。