C語言 庫函數(shù) realloc()
C語言 庫函數(shù) realloc()
C語言 標(biāo)準(zhǔn)庫 <stdlib.h>
C 庫函數(shù) void *realloc(void *ptr, size_t size) 嘗試重新調(diào)整之前調(diào)用 malloc 或 calloc 所分配的 ptr 所指向的內(nèi)存塊的大小。
1. 聲明
下面是 realloc() 函數(shù)的聲明。
void *realloc(void *ptr, size_t size)
2. 參數(shù)
- ptr -- 指針指向一個(gè)要重新分配內(nèi)存的內(nèi)存塊,該內(nèi)存塊之前是通過調(diào)用 malloc、calloc 或 realloc 進(jìn)行分配內(nèi)存的。如果為空指針,則會(huì)分配一個(gè)新的內(nèi)存塊,且函數(shù)返回一個(gè)指向它的指針。
- size -- 內(nèi)存塊的新的大小,以字節(jié)為單位。如果大小為 0,且 ptr 指向一個(gè)已存在的內(nèi)存塊,則 ptr 所指向的內(nèi)存塊會(huì)被釋放,并返回一個(gè)空指針。
3. 返回值
該函數(shù)返回一個(gè)指針 ,指向重新分配大小的內(nèi)存。如果請(qǐng)求失敗,則返回 NULL。
4. 實(shí)例
下面的實(shí)例演示了 realloc() 函數(shù)的用法。
#include <stdio.h> #include <stdlib.h> int main() { char *str; /* 最初的內(nèi)存分配 */ str = (char *) malloc(15); strcpy(str, "codebaoku"); printf("String = %s, Address = %u\n", str, str); /* 重新分配內(nèi)存 */ str = (char *) realloc(str, 25); strcat(str, ".cn"); printf("String = %s, Address = %u\n", str, str); free(str); return(0); }
讓我們編譯并運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
String = codebaoku, Address = 355090448 String = codebaoku.cn, Address = 355090448
相關(guān)文章
- C++ 變量類型
- C++ 數(shù)字
- C++ 繼承
- C++ 數(shù)據(jù)封裝
- C++ 編譯器
- C語言 函數(shù)
- C語言 作用域規(guī)則
- C語言 標(biāo)準(zhǔn)庫 <ctype.hglt;
- C語言 標(biāo)準(zhǔn)庫 <locale.h>
- C語言 標(biāo)準(zhǔn)庫 <stdio.h>
- C# 數(shù)據(jù)類型
- C++ 從函數(shù)返回指針
- C++ 類成員函數(shù)
- C++ 內(nèi)聯(lián)函數(shù)
- C++ 關(guān)系運(yùn)算符重載
- C++ 函數(shù)調(diào)用運(yùn)算符 () 重載
- C語言 庫函數(shù) difftime()
- C# Windows 文件系統(tǒng)的操作
- C# if 語句
- C# 嵌套 if 語句