gpt4 book ai didi

c++ - 将可变参数传递给另一个接受可变参数列表的函数

转载 作者:太空宇宙 更新时间:2023-11-04 04:35:36 28 4
gpt4 key购买 nike

所以我有 2 个函数,它们都有相似的参数

void example(int a, int b, ...);
void exampleB(int b, ...);

现在 example 调用 exampleB,但是我如何在不修改 exampleB 的情况下传递变量参数列表中的变量(因为这已经是也用于其他地方)。

最佳答案

你不能直接这样做;您必须创建一个接受 va_list 的函数:

#include <stdarg.h>

static void exampleV(int b, va_list args);

void exampleA(int a, int b, ...) // Renamed for consistency
{
va_list args;
do_something(a); // Use argument a somehow
va_start(args, b);
exampleV(b, args);
va_end(args);
}

void exampleB(int b, ...)
{
va_list args;
va_start(args, b);
exampleV(b, args);
va_end(args);
}

static void exampleV(int b, va_list args)
{
...whatever you planned to have exampleB do...
...except it calls neither va_start nor va_end...
}

关于c++ - 将可变参数传递给另一个接受可变参数列表的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30836169/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com