C++ 返回函数指针的函数

#include 

using namespace std;


int add(int a,int b){return a+b;}
int mul(int a,int b){return a*b;}

//返回函数指针的函数,第一种
typedef int OP(int,int);
OP* get_op(char c){
    if (c=='+')
        return add;
    else if (c=='*')
        return mul;
    else
        return nullptr;
}

//返回函数指针的函数,第二种
int (*op(char c))(int, int){
    if (c=='+')
        return add;
    else if (c=='*')
        return mul;
    else
        return nullptr;
}

//返回函数指针的函数,第三种,C++11
auto op2(char c) -> int (*)(int, int){
    if (c=='+')
        return add;
    else if (c=='*')
        return mul;
    else
        return nullptr;
}

//返回函数指针的函数,该指针指向 返回函数指针的函数,第一种
int (*(*pf_op())(char c))(int, int){
    return op2;
}
//返回函数指针的函数,该指针指向 返回函数指针的函数,第二种,C++11
auto pf_op2() -> auto (*)(char) -> int (*)(int, int){
     return op;
}

int main()
{
    int (*opt)(int,int) = op2('+');//get_op('*');//op('*');
    cout<

你可能感兴趣的:(C++ 返回函数指针的函数)