数组指针
C语言中的数组有自己特定的类型,数组的类型由元素类型和数组大小共同决定,例如int array[5]的类型就为int [5],也就是说array这个数组名所代表的数组它的元素类型为int,数组大小为5个元素,C语言中通过typedef为数组类型重命名,如下所示
数组类型:
typedef int(AINT5)[5];
数组定义:
AINT5 iArray
数组指针用于指向一个数组,数组名时是数组首元素的起始地址,但不是数组的起始地址,通过将取地址符&作用于数组名可以得到数组的起始地址,可通过数组类型定义数组指针:ArrayType* pointer,也可以直接定义:type(*pointer)[n]; 其中pointer为数组指针变量名,type为指向的数组的类型,n为指向的数组的大小
例子:
#include <stdio.h>
#include <stdlib.h>
typedef int(AINT5)[5];
typedef float(AFLOAT10)[10];
typedef char(ACHAR9)[9];
int main()
{
AINT5 a;
float fArray[10];
AFLOAT10* pf = &fArray;
ACHAR9 cArray;
char (*pc)[9] = &cArray;
char (*pcw)[4] = cArray;
int i = 0;
printf("%d , %d\n",sizeof(AINT5),sizeof(a));
for(i = 0;i<10;i++)
{
(*pf)[i] = i;
}
for(i=0;i<10;i++)
{
printf("%f\n",fArray[i]);
}
printf("%p,%p,%p\n",&cArray,pc+1,pcw+1);
return 1;
}
结果:
sice@sice:~$ ./test
20 , 20
0.000000
1.000000
2.000000
3.000000
4.000000
5.000000
6.000000
7.000000
8.000000
9.000000
0xbfc427b3,0xbfc427bc,0xbfc427b7
指针数组
指针数组是一个普通的数组,指针数组中每个元素为一个指针,指针数组的定义:type pArray[n]*,type* 为数组中每个元素的类型,pArray为数组名,n为数组大小
应用
#include <stdio.h>
#include <stdlib.h>
#define NUM(a) (sizeof(a)/sizeof(*a))
int fun(const char* key,const char *table[],const int size)
{
int ret = -1;
int i = 0;
for(i=0;i<size;i++)
{
if(strcmp(key,table[i])==0)
{
ret = i;
break;
}
}
return ret;
}
int main()
{
const char* word[]=
{
"do",
"for",
"if",
"register",
"return",
"switch",
"while",
"case",
"static"
};
printf("%d\n",fun("return",word,NUM(word)));
printf("%d\n",fun("main",word,NUM(word)));
return 0;
}
结果:
sice@sice:~$ ./test
4
-1