概述
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
void func(int **p)
{
int *temp;
temp= (int *)malloc(sizeof(int));
*temp = 100;
*p = temp;
printf("func %dn", **p);
}
int * func2()
{
int *p;
p = (int *)malloc(sizeof(int));
return p;
}
int main()
{
int *p = NULL;
func(&p);
//p = func2(); 如果调用func开辟堆空间一定要传递 地址过去 直接传递p是没用的
*p = 111;
printf("main %dn", *p);
free(p);
p = NULL;
system("pause");
return 0;
}
错误写法 假如func定义如下
void func(int *p)
{
p = (int *)malloc(sizeof(int));
*p = 100;
printf("func %dn", *p);
}
调用 func(p) zhe shi 错误的
最后
以上就是壮观电灯胆为你收集整理的c语言函数里开辟堆空间问题的全部内容,希望文章能够帮你解决c语言函数里开辟堆空间问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复