我想转换的源代码
TinyExpr(https://github.com/codeplea/tinyexpr)在
Visual Studio 2005的C兼容代码(我认为是
符合C89 / 90)。
特别是我有一个问题要转换为(存在于tinyexpr.c中)此宏:

#define NEW_EXPR(type, ...) new_expr((type), (const te_expr*[]){__VA_ARGS__})


与:

typedef struct te_expr {
    int type;
    union {double value; const double *bound; const void *function;};
    void *parameters[1];
} te_expr;

static te_expr *new_expr(const int type, const te_expr *parameters[]) {
 ...
}

static te_expr *base(state *s) {
  ...
}


在调用中出现问题:NEW_EXPR(TE_FUNCTION1 | TE_FLAG_PURE, base(s));
我在哪里:


  错误C2059:正税错误:“ {”

最佳答案

正如我在评论中所说,在较旧的编译器中确实没有很好的方法。

一种可能的方法是使用包装器vararg函数,该函数动态创建数组,调用真正的new_expr函数,然后释放临时数组。

也许像

te_expr *new_expr_va(const int type, ...) {
    re_expr *result = NULL;  /* The resulting expression structure to return */
    size_t argument_count = 0;  /* The number of te_expr arguments passed */

    /*
     * We do two passes over the arguments, once to get the number of them,
     * and once to get the actual values.
     */

    /* First get the number of arguments */
    {
        va_list va;

        va_start(va, type);

        /* Loop until we get a null pointer */
        while (va_arg(va, te_expr *) != NULL)
            ++argument_count;

        va_end(va);
    }

    /* Now allocate the array */
    te_expr **parameters = malloc(argument_count * sizeof(te_expr *));

    /* And populate the array */
    {
        va_list va;
        size_t index = 0;
        te_expr *expr;

        va_start(va, type);

        /* Get all arguments and add to the allocated array */
        while ((expr = va_arg(va, te_expr *)) != NULL)
            parameters[index++] = expr;

        va_end(va);
    }

    /* Now we call the actual function */
    result = new_expr(type, parameters);

    /* Free the memory we allocated for the array */
    free(parameters);

    /* And return the result */
    return result;
}


可以使用如

/* Argument list must be terminated by a NULL */
new_expr_va(TE_FUNCTION1 | TE_FLAG_PURE, base(s), NULL);


请注意,这都是未经测试的,没有任何类型的错误检查。

08-26 17:58