函数数组

本文通过一个具体的 C++ 程序实例展示了如何使用函数指针数组来调用不同的函数,并演示了如何通过修改传入函数的指针参数来改变全局变量的值。该示例涉及 C++ 的基本语法、标准输入输出操作以及函数指针的定义和使用。
摘要由CSDN通过智能技术生成
#include "include.h"
#include "stdio.h"
#include <iostream>
using namespace std;


void handleCase1(int *key, int value)
{
    cout<<"key="<<*key<<"--value="<<value<<endl;
    *key = 0;
    cout<<"handleCase1="<<*key<<endl;
}

void handleCase2(int *key, int value)
{
    cout<<"key="<<*key<<"--value="<<value<<endl;
    *key = 0;
    cout<<"handleCase2="<<*key<<endl;
}

void handleCase3(int *key, int value)
{
    cout<<"key="<<*key<<"--value="<<value<<endl;
    *key = 0;
    cout<<"handleCase3="<<*key<<endl;
}

void handleCase4(int *key, int value)
{
    cout<<"key="<<*key<<"--value="<<value<<endl;
    *key = 0;
    cout<<"handleCase4="<<*key<<endl;
}


void (*af[])(int*, int)=
{
    handleCase1,
    handleCase2,
    handleCase3,
    handleCase4
};
#include <iostream>
#include "stdio.h"
#include <iomanip>
#include "include.h"

using namespace std;



int type = 0;
int i = 0;
int main(void)
{
    for (i = 0; i < 4; i++)
    {
        type=10+i*10;
        (*af[i])(&type, type);
    }


    cout<<"Done!"<<endl;

    getchar();

    getchar();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值