C++中靜態成員變量與靜態成員函數,以及malloc , free , new , delete ,區別

int * p = (int * ) malloc(sizeof(int) ) ;  int * p = (int * ) malloc(sizeof(int)*10);   生成一個數組的空間 int * p = new int (10) ;  生成一個int型內存空間,並指向 10  int * p = new int[10]  ;  生成數組的空間。 也可以用malloc 來生成類對象空間
相關文章
相關標籤/搜索