c++指針參數是如何傳遞內存的

  參數策略 如果函數的參數是一個指針,不要指望用該指針去動態申請內存。如下: void GetMemory(char *p, int num) { p = (char *)malloc(sizeof(char) * num); } void Test(void) { char *str = NULL; GetMemory(str, 100); //str仍未NUL
相關文章
相關標籤/搜索