张凌枫<2016.10.28>【连续第4天总结】
A.今日任务
1.复习之前所学(100%)
2.内存管理(80%)
1.复习之前所学(100%)
2.内存管理(80%)
B.具体任务
1.内存管理要求有借有还
2.内存申请和释放需要对上号
3.分号!!!!!!!!
1.内存管理要求有借有还
2.内存申请和释放需要对上号
3.分号!!!!!!!!
附代码:
#include <iostream>
#include <stdlib.h>
using namespace std;
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
int *p = new int[1000];
if(NULL==p)
{
system("pause");
return 0;
}
p[0] = 10;
p[1] = 100;
cout<<p[0]<<endl;
cout<<p[1]<<endl;
delete []p;
p = NULL;
system("pause");
return 0;
}
{
int *p = new int[1000];
if(NULL==p)
{
system("pause");
return 0;
}
p[0] = 10;
p[1] = 100;
cout<<p[0]<<endl;
cout<<p[1]<<endl;
delete []p;
p = NULL;
system("pause");
return 0;
}
明日任务:
1.复习复习接着复习
2.找找视频看看
1.复习复习接着复习
2.找找视频看看
博客地址:http://blog.csdn.net/night__day/article/details/52905196