刷题记录
Posted faberry
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刷题记录相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
struct Node{
int id;
};
int main(){
Node *t;
for(int i = 0; i < 2; i ++){
Node *node = (Node*)malloc(sizeof(Node));
node->id = i;
if(i == 0){
t = node;
}
cout<<"i:"<<i<<endl;
printf("%p
", node);
}
cout<<t->id<<endl;
return 0;
}
与下端代码有区别
#include<iostream>
using namespace std;
struct Node{
int id;
};
int main(){
Node *t;
for(int i = 0; i < 2; i ++){
Node node;
node.id = i;
if(i == 0){
t = &node;
}
cout<<"i:"<<i<<endl;
printf("%p
", &node);
}
cout<<t->id<<endl;
return 0;
}
以上是关于刷题记录的主要内容,如果未能解决你的问题,请参考以下文章