有關記憶體的思考題

2021-08-27 15:32:45 字數 747 閱讀 8525

注意下面4個測試函式的執行結果:

測試函式1:

void getmemory(char *p) 

void test(void)

執行結果:

程式崩潰。因為getmemory並不能傳遞動態記憶體,test函式中的str一直都是null。

strcpy(str, "hello world");將使程式崩潰。

測試函式2:

char *getmemory(void)

void test(void)

執行結果:

可能是亂碼。因為getmemory返回的是指向「棧記憶體」的指標,該指標的位址不是null,

但其原現的內容已經被清除,新內容不可知。

測試函式3:

void getmemory(char **p, int num)

void test(void)

執行結果:

(1)能夠輸出hello(2)記憶體洩漏

測試函式4:

void test(void)

}

執行結果:

篡改動態記憶體區的內容,後果難以預料,非常危險。

因為free(str);之後,str成為野指標,if(str != null)語句不起作用。

——以上內容摘自林銳《高質量c程式設計指南》

有關記憶體的思考題

摘自 高質量c c 程式設計指南 四 有關記憶體的思考題 20 分 void getmemory char p p char malloc 100 void test void char str null getmemory str strcpy str,hello world printf str...

有關記憶體的思考題

void getmemory char p void test void 請問執行test 函式會有什麼樣的結果?因為 getmemory 並不能傳遞動態記憶體,test 函式中的 str 一直都是 null。strcpy str,hello world 將使程式崩潰。2.char getmemor...

C有關記憶體的思考題

void getmemery char p void test int main 請問執行test函式會有什麼樣的結果?下面是在windows下vs2013編譯器的結果 程式崩潰 因為getmemory方法並不能傳遞動態記憶體 test函式中的str一直都是null strcpy將使程式崩潰 之所以...