能力值:
( LV5,RANK:70 )
|
-
-
2 楼
- -.难道是晚饭时间,又没人吗?
|
能力值:
( LV5,RANK:70 )
|
-
-
3 楼
自己顶顶,大大们来一个人吧.!
|
能力值:
( LV5,RANK:70 )
|
-
-
4 楼
原来是定义函数指针的数组- -.好了这贴我自己给自己结了.!
#include "stdafx.h" void function0(void); void function1(void); void function2(void); void MyTestFuntion(int length);
void (*fun[])(void) = { function0, function1, function2 }; int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { // TODO: Place code here. MyTestFuntion(1); return 0; }
void function0(void){ //this is function 0 }
void function1(void){ //this is function 1 }
void function2(void){ //this is function 2 }
void MyTestFuntion(int length) { (*fun[length])(); }
以以上代码为示例,这样的定义是定义一个函数指针的数组,然后将函数的指针挨个放入里面.!
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
汗,占座接分。
|
能力值:
( LV5,RANK:70 )
|
-
-
6 楼
楼上不厚道 ,不过分还是给你吧!
|
|
|