|
发表于 2010-2-25 15:10:16
|
显示全部楼层
这样写就可以。顺便可以用来跟函数指针用法对照着看。- typedef int* (*a_array_t)[2];
- typedef int* (*a_func_t)( int);
- static int* a_func_inst( int x)
- {
- return 0;
- }
- int main()
- {
- int* a1[2];
- a_array_t a2;
- a_func_t a3;
- a2 = &a1;
- a3 = a_func_inst;
- a3 = &a_func_inst;
- return 0;
- }
复制代码 虽然有点离题,不过函数指针的话,加不加&都一样。但对于数组,就不同了。 |
|