本章將講解 C 中的動(dòng)態(tài)內(nèi)存管理。C 語(yǔ)言為內(nèi)存的分配和管理提供了幾個(gè)函數(shù)。這些函數(shù)可以在
char name[100];
但是,如果您預(yù)先不知道需要存儲(chǔ)的文本長(zhǎng)度,例如您向存儲(chǔ)有關(guān)一個(gè)主題的詳細(xì)描述。在這里,我們需要定義一個(gè)指針,該指針指向未定義所需內(nèi)存大小的字符,后續(xù)再根據(jù)需求來(lái)分配內(nèi)存,如下所示:
#include
#include
#include
{ char name[100];
char *description; strcpy(name, "Zara Ali"); /* 動(dòng)態(tài)分配內(nèi)存 */ description = (char *)malloc( 200 * sizeof(char) );
if( description == NULL ) { fprintf(stderr, "Error - unable to allocate required memoryn");
} else { strcpy( description, "Zara ali a DPS student in class 10th");
} printf("Name = %sn", name );
printf("Description: %sn", description );
}
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
Name = Zara Ali Description: Zara ali a DPS student in class 10th
上面的程序也可以使用calloc()來(lái)編寫,只需要把 malloc 替換為 calloc 即可,如下所示:
calloc(200, sizeof(char));
當(dāng)動(dòng)態(tài)分配內(nèi)存時(shí),您有完全控制權(quán),可以傳遞任何大小的值。而那些預(yù)先定義了大小的數(shù)組,一旦定義則無(wú)法改變大小。
#include
#include
#include
{ char name[100];
char *description; strcpy(name, "Zara Ali"); /* 動(dòng)態(tài)分配內(nèi)存 */ description = (char *)malloc( 30 * sizeof(char) );
if( description == NULL ) { fprintf(stderr, "Error - unable to allocate required memoryn");
} else { strcpy( description, "Zara ali a DPS student.");
} /* 假設(shè)您想要存儲(chǔ)更大的描述信息 */ description = realloc( description, 100 * sizeof(char) );
if( description == NULL ) { fprintf(stderr, "Error - unable to allocate required memoryn");
} else { strcat( description, "She is in class 10th");
} printf("Name = %sn", name );
printf("Description: %sn", description ); /* 使用 free() 函數(shù)釋放內(nèi)存 */ free(description);
}
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
Name = Zara Ali Description: Zara ali a DPS student.She is in class 10th
您可以嘗試一下不重新分配額外的內(nèi)存,strcat() 函數(shù)會(huì)生成一個(gè)錯(cuò)誤,因?yàn)榇鎯?chǔ) description 時(shí)可用的內(nèi)存不足。
審核編輯:黃飛
-
C語(yǔ)言
+關(guān)注
關(guān)注
180文章
7604瀏覽量
136683 -
函數(shù)
+關(guān)注
關(guān)注
3文章
4327瀏覽量
62569 -
內(nèi)存管理
+關(guān)注
關(guān)注
0文章
168瀏覽量
14134
原文標(biāo)題:C語(yǔ)言中的內(nèi)存管理
文章出處:【微信號(hào):?jiǎn)纹瑱C(jī)與嵌入式,微信公眾號(hào):?jiǎn)纹瑱C(jī)與嵌入式】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論