4

我想创建一个函数“lazy”,它接受一个参数数量不确定的函数作为参数。我需要什么类型或必须进行哪些演员阵容?

然后我想稍后在函数“评估”中执行那个东西。然后如何将我之前传递给“惰性”函数的参数传递给传递的函数指针?

一些代码来说明我的问题:

char *function_I_want_to_call(void *foo, type bar, ...);
// the arguments are unknown to lazy() and evaluate()

typedef struct {
    ??? func;
    va_list args;
} lazy_fcall;

void lazy(lazy_fcall *result, ??? func, ...) {
// which type do I need here?
    va_start(result->_args, fund);
    result->func = func;
}

void *evaluate(lazy_fcall *to_evaluate) {
    return to_evaluate->func(expand_args(to_evaluate->args));
    // what do I have to write there to expand the va_list? It's C, not C++11...
}

int main () {
    lazy_fcall lazy_store;
    lazy(&lazy_store, function_I_want_to_call, "argument_1", "argument_2");
    // ...
    printf("%s", (char *)evaluate(&lazy_store));
}

或者这样的事情是不可能的?还存在哪些其他可能性?

4

1 回答 1

3

您不能将 a 扩展va_list为单独的参数。您要调用的函数必须能够接受一个va_list作为参数。参见例如printfvs vprintf


此外,正如 caf 所指出的,您不能存储 a ,因为一旦函数返回va_list,它“指向”的参数将无效。lazy尝试使用va_list将导致未定义的行为和各种怪异。

于 2013-10-30T11:34:02.503 回答