您好,登錄后才能下訂單哦!
這篇文章主要介紹了c++指針參數傳遞實質及二級指針怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇c++指針參數傳遞實質及二級指針怎么使用文章都會有所收獲,下面我們一起來看看吧。
先看兩個程序:
1:
void test(char *p)
{
printf("[test1][p]:%p.\n",p);
printf("[test2][p]:%s.\n",p);
p=(char *)malloc(10);
strcpy(p,"ABCDE");
printf("[test3]malloc之后.....\n");
printf("[test4][p]:%p.\n",p);
printf("[test5][p]:%s.\n",p);
free(p);
}
int main()
{
char b[6] = "abcde";
char *a = b;
printf("[main1][a]:%p.\n",a);
printf("[main2][a]:%s.\n",a);
test(a);
printf("[main3][a]:%p.\n",a);
printf("[main4][a]:%s.\n",a);
return 0;
}
輸出結果: 注意:(test函數的pde值已改變,main函數的a的值未改變)
main1][a]:0xbfeaaef6.
[main2][a]:abcde.
[test1][p]:0xbfeaaef6.
[test2][p]:abcde.
[test3]malloc之后.....
[test4][p]:0x8a52008.
[test5][p]:ABCDE.
[main3][a]:0xbfeaaef6.
[main4][a]:abcde.
2:
void test(char **p)
{
printf("[test1][p]:%p.\n",p);
printf("[test2][*p]:%p.\n",*p);
*p=(char *)malloc(10);
strcpy(*p,"ABCDE");
printf("[test3]malloc之后.....\n");
printf("[test4][p]:%p.\n",p);
printf("[test5][*p]:%p.\n",*p);
printf("[test6][*p]:%s.\n",*p);
free(*p);
}
int main()
{
char b[6] = "abcde";
char *a = b;
printf("[main1][a]:%p.\n",a);
printf("[main2][a]:%s.\n",a);
test(&a);
printf("[main3][a]:%p.\n",a);
printf("[main4][a]:%s.\n",a);
return 0;
}
輸出結果: 注意:(test函數的pde值已改變,main函數的a的值也已經改變)
[main1][a]:0xbfaca776.
[main2][a]:abcde.
[test1][p]:0xbfaca770.
[test2][*p]:0xbfaca776.
[test3]malloc之后.....
[test4][p]:0xbfaca770.
[test5][*p]:0x9132008.
[test6][*p]:ABCDE.
[main3][a]:0x9132008.
[main4][a]:ABCDE.
關于“c++指針參數傳遞實質及二級指針怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“c++指針參數傳遞實質及二級指針怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。