本篇內(nèi)容主要講解“C語(yǔ)言字符串指針做函數(shù)參數(shù)實(shí)例分析”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“C語(yǔ)言字符串指針做函數(shù)參數(shù)實(shí)例分析”吧!
創(chuàng)新互聯(lián)公司-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比樂(lè)東黎族網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式樂(lè)東黎族網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋樂(lè)東黎族地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴(lài)。
#include "stdio.h"
//#include "stdbool.h"
#include "string.h"
#include "stdlib.h"
#include "math.h"
void getMemory(char *p)
{
/*char *p = str*/
p = (char *)malloc(100);
strcpy(p,"hello world");
printf("p:%s\n",p);
}
int main()
{
printf("Enter main...\n");
char *str = NULL;
printf("str:%p\n",str);
getMemory(str);
printf("%s\n",str);
if(str != NULL)
free(str);
return (0);
}
分析一下 很多人對(duì)函數(shù)傳參數(shù)還不是特別清楚
void getMemory(char *p)
{
/*char *p = str*/
p = (char *)malloc(100);
strcpy(p,"hello world");
printf("p:%s\n",p);
}
getMemory(str);
str 是一個(gè)指針變量,也就是說(shuō) 它存的是一個(gè)內(nèi)存地址,這個(gè)內(nèi)存地址指向類(lèi)型是 char * 「也就是字符串」
但是把str 傳給getMemory(char * p)的時(shí)候,它傳遞的是 str 的副本,不是它本身
既然傳的是副本,在getMemory 里面操作的代碼,也都是對(duì)這個(gè)副本進(jìn)行操作,函數(shù)調(diào)用結(jié)束,也就銷(xiāo)毀回收了。
所以 str 的值還是原來(lái)的 NULL
#include "stdio.h"
//#include "stdbool.h"
#include "string.h"
#include "stdlib.h"
#include "math.h"
void getMemory(char **p)
{
/*char **p = &str*/
*p = (char *)malloc(100);
strcpy(*p,"hello world");
printf("p:%s\n",*p);
}
int main()
{
printf("Enter main...\n");
char *str = NULL;
printf("str:%p\n",str);
getMemory(&str);
printf("%s\n",str);
if(str != NULL)
free(str);
return (0);
}
到此,相信大家對(duì)“C語(yǔ)言字符串指針做函數(shù)參數(shù)實(shí)例分析”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!