标签:style blog http color ar os 使用 sp on
参考:指针数组和数组指针的区别
指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针
数组指针:a pointer to an array,即指向数组的指针
还要注意的是他们用法的区别,下面举例说明。
int* a[4] 指针数组
表示:数组a中的元素都为int型指针
int型元素表示:*a[i] (a[i]表示int型元素的地址) *(a[i])是一样的,因为[]优先级高于*
int (*a)[4] 数组指针 ----------另一中理解方式:int (*)[4] a;
表示:指向int型数组a的指针
int型元素表示:(*a)[i]
注意:在实际应用中,对于指针数组,我们经常这样使用:
标签:style blog http color ar os 使用 sp on
原文地址:http://www.cnblogs.com/kira2will/p/4099290.html