首页 > 代码库 > 指针数组??数组指针的区别.xml

指针数组??数组指针的区别.xml

<style type="text/css"> pre{ line-height:1; color:#1e1e1e; background-color:#f0f0f0; font-size:16px;}.sysFunc{color:#627cf6;font-style:italic;font-weight:bold;} .selfFuc{color:#800080;} .bool{color:#d2576f;} .condition{color:#000080;font-weight:bold;} .key{color:#000080;} .var{color:#800000;font-style:italic;} .Digit{color:#ff00ff;font-weight:bold;} .includePre{color:#1e1e1e;} .operator?{color:#008000;font-weight:bold;} </style>

指针数组??数组指针的区别

?

这两个概念极易混淆,可以用以下方式辅助理解:

指针数组

整形数组

字符数组

?

由此可知,指针数组的含义为数组,数组元素为指针类型

?

示例:

Char?*p[2]={“ab”,”cd”};

数组指针

整形指针

字符指针

?

由此可知,数组指针的含义为指针,此指针所指的为数组

?
?

示例:

Char?(*p)[2];
?
Char??array[2];
P=&array;
?

指针函数????函数指针的区别

指针函数

整形函数

字符函数

?
?

由此可知,指针函数为返回值为指针的函数

?

示例:?int?*?test();

函数指针

整形指针

字符指针

数组指针

?

由此可知,函数指针为指向函数的指针

?

示例:int?*(*p)()

本文使用?书画小说软件?发布,内容与软件无关,书画小说软件?更惬意的读、更舒心的写、更轻松的发布。

指针数组??数组指针的区别.xml