结构体内存分配问题
1、在使用VC环境,如下所示给结构体分配内存的问题:structnode{
int *top;
int *base;
}*pnode;
int main()
{
int c,c1;
int i,j=0;
pnode=(struct node*)malloc(sizeof(struct node));
这里为什么需要加这个struct关键字。
另外如果是这样定义就不需要呢:
typedef struct
{
int *top;
int *base;
}node, *pnode;
structnode{
int *top;
int *base;
}*pnode;
int main()
{
int c,c1;
int i,j=0;
pnode=(struct node*)malloc(sizeof(struct node));
这里的pnode是一个struct node的指针变量,pnode的类型为struct node类型。用malloc函数为指针变量申请空间的时候需要指定变量类型。typedef struct
{
int *top;
int *base;
}node, *pnode;
typedef关键字是为变量类型重新定义一个名字。就相当于人的别名。当别人叫我的别人的时候,我们知道他是在叫我们,这道理也是一样的。当为struct node类型定义了一个为*pnode的别名后,在程序中我们用pnode去定义变量时,就相当与用struct node * 定义的变量。
这里楼主要理解一个东西,上面的*pnode是一个变量,而下面的pnode是一种变量类型。 小亮1201 发表于 2013-10-16 11:13 static/image/common/back.gif
这里的pnode是一个struct node的指针变量,pnode的类型为struct node类型。用malloc函数为指针变量申请空间 ...
谢谢~ 你说的让我听的很明白。非常感谢~
页:
[1]