C demo 函式輸出陣列指標

2021-10-21 02:38:31 字數 1906 閱讀 8535

demo 2

指標陣列的指標,

用法:函式輸出指標陣列

#include

#include

//#include

#include

using

namespace std;

int a =

100;

int b =

200;

void

get(

int i,

int*

* ptr,

int*n)

else

if(i==2)

}int

main

(int argc,

char

*ar**)

get(

1,ptr,n)

;for

(i=0

;i<

*n;i++

) cout<<

"----------"

2,ptr,n)

;for

(i=0

;i<

*n;i++

)(argc, ar**)

;for

(i=0

;i)delete n;

delete

ptr;

return a.

exec()

;}

ps,

一、需要搞清以下概念

陣列,指標,指標的指標,指標陣列,指標陣列的指標

二、參考:

注意:細心的你有沒有發現該**有問題?

問題1:記憶體洩漏

首先 :

for

(i=0

;i)

在初始化指標成員時,申請了記憶體

但在最後沒有被釋放掉

ptr指向發生了問題

初始化時應該指向為空

for

(i=0

;i)

問題2:刪除了不該刪除的物件

由於ptr指向發生了改變

最後delete ptr[i]

實際刪除的是

int a =

100;

int b =

200;

下次再訪問時,會不見

故當ptr[i]初始化為nullptr時 由於沒有new,不用delete

修改後版本:

#include

#include

//#include

#include

using

namespace std;

int a =

100;

int b =

200;

void

get(

int i,

int*

* ptr,

int*n)

else

if(i==2)

}int

main

(int argc,

char

*ar**)

get(

1,ptr,n)

;for

(i=0

;i<

*n;i++

) cout<<

"----------"

2,ptr,n)

;for

(i=0

;i<

*n;i++

)(argc, ar**)

;delete n;

delete

ptr;

return a.

exec()

;}

指標陣列 陣列指標 函式指標 函式指標陣列

陣列指標 指向陣列的指標,是乙個指標,其指向的型別是陣列 指標陣列 元素為指標的陣列,是乙個陣列,其中的元素為指標。例如 int a 5 這個是陣列指標。int a 5 這個是指標陣列。定義函式指標型別 int max int,int typedef int fun ptr int,int 申明變數...

指標陣列,陣列指標,指標函式,函式指標

int p 4 指標陣列。是個有4個元素的陣列,每個元素的是指向整型的指標。int p 4 陣列指標。它是乙個指標,指向有4個整型元素的陣列。int func void 指標函式。無參函式,返回整型指標。int func void 表示函式指標,可以指向無參,且返回值為整型指標的函式。右左規則 因為...

陣列指標,指標陣列,函式指標,指標函式

陣列指標,指標陣列,函式指標,指標函式 指標 變數,存放變數的位址。例 int ptr,ptr是乙個指向整形變數的指標 陣列 例 int a 10 定義了乙個具有10個元素的一維陣列,其中陣列的每個元素是乙個int型別。陣列指標 陣列首元素位址的指標,即是指向陣列的指標。例 int ptr 10 c...