空指针
#include <iostream>
using namespace std;int main()
{//空指针//1、空指针用于给变量进行初始化int * p = NULL;//2、空指针是不可以进行访问的//0-255之间的内存编号是系统占用的,因此不可以访问//cout<<*p<<endl;system("pause");return 0;
}
野指针
#include <iostream>
using namespace std;int main()
{//野指针//在程序中,尽量避免出现野指针int * p = (int *)0x1100;/*cout << *p << endl;*/system("pause");return 0;
}