2016年12月21日

指针数组和数组指针(搬运)

摘要: 指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针 int* a[4] 表示:数组a中的元素都为int型指针,元素表示:*a[i] *(a[i])是一样的,因为[]优先级高于* 数组指针:a pointer to an array,即指向数组的指针 int ( 阅读全文

posted @ 2016-12-21 18:25 pandawuwyj 阅读(327) 评论(0) 推荐(0) 编辑

导航