- 论坛徽章:
- 0
|
1,声明:
long (* funcPtr) (int);//声明了一个指向函数的指针,这个函数带有一个整形的参数,且这个函数的返回值是long型。
Note: *funcPtr外的括号一定要带上。如果不带就成了:
long * Function (int);//声明一个函数,这个函数带一个整形的参数,且这个函数的返回值是long型。
2,实例program:
//Note: pointer to function
//Author: hjzheng
//Date: 2003.04.30
#include <iostream.h>;
void Square (int&,int& ;
void Cube (int&, int& ;
void Swap (int&, int & ;
void GetVals(int&, int& ;
void PrintVals(int, int);
int main()
{
void (* pFunc) (int &, int & ;
bool fQuit = false;
int valOne=1, valTwo=2;
int choice;
while (fQuit == false)
{
cout << "(0)Quit (1)Change Values (2)Square (3)Cube (4)Swap: ";
cin >;>; choice;
switch (choice)
{
case 1:
pFunc = GetVals;
break;
case 2:
pFunc = Square;
break;
case 3:
pFunc = Cube;
break;
case 4:
pFunc = Swap;
break;
default:
fQuit = true;
break;
}
if (fQuit)
break;
PrintVals(valOne, valTwo);
pFunc(valOne, valTwo);
PrintVals(valOne, valTwo);
}
return 0;
}
void PrintVals(int x, int y)
{
cout << "x: " << x << " y: " << y << endl;
}
void Square (int & rX, int & rY)
{
rX *= rX;
rY *= rY;
}
void Cube (int & rX, int & rY)
{
int tmp;
tmp = rX;
rX *= rX;
rX = rX * tmp;
tmp = rY;
rY *= rY;
rY = rY * tmp;
}
void Swap(int & rX, int & rY)
{
int temp;
temp = rX;
rX = rY;
rY = temp;
}
void GetVals (int & rValOne, int & rValTwo)
{
cout << "New value for ValOne: ";
cin >;>; rValOne;
cout << "New value for ValTwo: ";
cin >;>; rValTwo;
}
Note: 该程序在VC下编译通过. |
|