C語言的那些小秘密之記憶體配置

來源:互聯網
上載者:User

realloc()函數

原型:extern void *realloc(void *mem_address, unsigned int newsize);

文法:指標名=(資料類型*)realloc(要改變記憶體大小的指標名,新的大小)。

標頭檔:#include <stdlib.h> 有些編譯器需要#include <alloc.h>,在TC2.0中可以使用alloc.h標頭檔

功能:先按照newsize指定的大小分配空間,將原有資料從頭到尾拷貝到新分配的記憶體地區,而後釋放原來mem_address所指記憶體地區,同時返回新分配的記憶體地區的首地址。即重新分配儲存空間塊的地址。

傳回值:如果重新分配成功則返回指向被分配記憶體的指標,否則返回null 指標NULL。

注意:這裡原始記憶體中的資料還是保持不變的。當記憶體不再使用時,應使用free()函數將記憶體塊釋放。

malloc()函數

原型:extern void *malloc(unsigned int num_bytes);

標頭檔:在TC2.0中可以用malloc.h或 alloc.h (注意:alloc.h 與 malloc.h 的內容是完全一致的),而在Visual C++6.0中可以用malloc.h或者stdlib.h。

功能:分配長度為num_bytes位元組的記憶體塊

傳回值:如果分配成功則返回指向被分配記憶體的指標,否則返回null 指標NULL。當記憶體不再使用時,應使用free()函數將記憶體塊釋放。

說明:關於該函數的原型,在舊的版本中malloc返回的是char型指標,新的ANSIC標準規定,該函數返回為void型指標,因此必要時要進行類型轉換。

calloc()函數

calloc是一個C語言函數

功 能: 在記憶體的動態儲存裝置區中分配n個長度為size的連續空間,函數返回一個指向分配起始地址的指標;如果分配不成功,返回NULL。

跟malloc的區別:

calloc在動態分配完記憶體後,自動初始化該記憶體空間為零,而malloc不初始化,裡邊資料是隨機的垃圾資料。

用 法: void *calloc(unsigned n,unsigned size);

標頭檔:stdlib.h或malloc.h

#include <stdio.h>
#include <stdlib.h>
int main(void)
{   
 int num = 10;
    int i;   
 long *p = (long *)malloc(num * sizeof(long));
 long *p1=(long *)calloc(num,sizeof(long));

 for (i = 0; i < num; i++)
 {
  printf("%d\t", p[i]);
 }
 for (i = 0; i < num; i++)
 {
  printf("%d\t", p1[i]);
 }

 printf("記憶體位址: %p\n~~~~~~~~\n", p); 
 for (i = 0; i < num; i++)
  p[i] = i+1;  
 for (i = 0; i < num; i++)
  printf("%d\t", p[i]); 

 printf("\n------------------\n");
    num = 4;   
 p = (long *)realloc(p, num*sizeof(long)); 
 printf("記憶體位址: %p\n~~~~~~~~\n", p);
 for (i = 0; i < num; i++)
  printf("%d\t", p[i]); 

 printf("\n------------------\n");   
 num = 10;   
 p = (long *)realloc(p, num*sizeof(long)); 
 printf("記憶體位址: %p\n~~~~~~~~\n", p); 
 for (i = 0; i < num; i++)
  printf("%d\t", p[i]);

 free(p);  
 free(p1);
 getchar();  
 return 0;
}

運行結果為:

 

由資料可以很直觀的看出他們之間的區別

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.