我的程序有一个有趣的行为。最好先显示代码。
typedef struct PS {
int num;
} PR;
typedef struct PS* PN;
typedef struct {
int num;
int tmp;
} VD;
void F (PN VPtr)
{
register VD* qVPtr = (VD*)VPtr;
// if this is call #2
// qVPtr->tmp already is 8 for VP arg
// qVPtr->tmp already is 16 for VP1 arg
switch(VPtr->num){
case 0:
qVPtr->tmp = 8;
return;
case 1:
qVPtr->tmp = 16;
return;
}
}
int main()
{
PN VP = NULL;
VP = (PN)malloc(sizeof(PR));
VP->num = 0;
F (VP);
PN VP1 = NULL;
VP1 = (PN)malloc(sizeof(PR));
VP1->num = 1;
F (VP1);
F (VP); // call #2 with VP arg
F (VP1); // call #2 with VP1 arg
return 0;
}
在 main 函数中VP
,VP1
不知道qVPtr
和tmp
字段,但根据函数VPtr
中的参数,F
可以获得 的最后一个值qVPtr->tmp
。
你能详细解释一下这种可能性吗?