我想创建一个函数“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));
}
或者这样的事情是不可能的?还存在哪些其他可能性?