c++指針和數組的區別和用法

1.指針:int *p 變量,變量的值是地址數組 2.數組:int p[100],p爲第一個元素的地址函數 (1) 初始化方法:spa //靜態:在函數中建立,退出函數時會被回收 int p[100] //動態:在函數中建立,退出函數依然有效 int* p = new int[100] int* p = new int[100]() //默認值爲0 int* p = new int[3
相關文章
相關標籤/搜索