c – 如何检查函数指针是否存在

在C中,我试图用函数指针编写一个函数.如果为不存在的函数传递函数指针,我希望能够抛出异常.我试图像普通指针一样处理函数指针,并检查它是否为null

#include <cstddef>
#include <iostream>

using namespace std;

int add_1(const int& x) {
    return x + 1;
}

int foo(const int& x, int (*funcPtr)(const int& x)) {
    if (funcPtr != NULL) {
        return funcPtr(x);
    } else {
        throw "not a valid function pointer";
    }
}

int main(int argc, char** argv) {
try {
    int x = 5;

    cout << "add_1 result is " << add_1(x) << endl;

    cout << "foo add_1 result is " << foo(x, add_1) << endl;
    cout << "foo add_2 result is " << foo(x, add_2) << endl; //should produce an error
}
catch (const char* strException) {
    cerr << "Error: " << strException << endl;
}
catch (...) {
    cerr << "We caught an exception of an undetermined type" << endl;
}
    return 0;
}

但这似乎不起作用.做这个的最好方式是什么?

最佳答案 检查NULL是可以的.但是不可能将指针传递给首先不存在的函数.所以你不必担心这个.虽然可以在不定义函数的情况下声明函数并传递它的地址.在这种情况下,您将收到链接器错误.

点赞