web-dev-qa-db-ja.com

パラメーターとしての関数ポインター

引数なしで関数ポインタとして渡された関数を呼び出そうとしましたが、機能しません。

void *disconnectFunc;

void D::setDisconnectFunc(void (*func)){
    disconnectFunc = func;
}

void D::disconnected(){
    *disconnectFunc;
    connected = false;
}
52
Roland Soós

これを行う正しい方法は次のとおりです。

typedef void (*callback_function)(void); // type for conciseness

callback_function disconnectFunc; // variable to store function pointer type

void D::setDisconnectFunc(callback_function pFunc)
{
    disconnectFunc = pFunc; // store
}

void D::disconnected()
{
    disconnectFunc(); // call
    connected = false;
}
76
GManNickG

_void *disconnectFunc;_をvoid (*disconnectFunc)();に置き換えて、関数ポインター型変数を宣言します。または、typedefを使用することをお勧めします:

_typedef void (*func_t)(); // pointer to function with no args and void return
...
func_t fptr; // variable of pointer to function
...
void D::setDisconnectFunc( func_t func )
{
    fptr = func;
}

void D::disconnected()
{
    fptr();
    connected = false;
}_
10

DisconnectFuncは、voidポインターではなく、関数ポインターとして宣言する必要があります。また、関数として(括弧を付けて)呼び出す必要があり、「*」は必要ありません。

7
WhirlWind