指針常見的錯誤

​#include<iostream> using namespace std; int main() { int *p=new int; *p=3; cout<<"將3賦給p的地址後,指針p讀取的值:\t"<<*p<<endl; delete p;//刪除空間; p=0; cout<<"將刪除空間後,指針p讀取的值:\t\t"<<*p<<endl; long *p1=new lo
相關文章
相關標籤/搜索