gpt4 book ai didi

C++11 可变参数模板函数调用转发

转载 作者:行者123 更新时间:2023-11-30 00:37:49 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何创建一个 C++11 模板函数,它将在两个约定之间转换函数调用:第一个是使用 Variant(注意:变体是一种多态类型,它是子类 IntVariable、DoubleVariant 等),第二个是 C 函数调用。

我们在编译时知道每条信息:参数计数是参数的数量,参数/返回类型取决于 'cfunc' 变量类型。

// We will assume that the two following functions are defined with their correct
// specializations.

template < typename T >
Variant * convertToVariant( T t );

template < typename T >
T convertFromVariant( Variant * variant );

// The following function is incomplete, the question is how to convert the
// variant parameters into a C function call ?

template < typename Return, typename... Arguments >
Variant * wrapCFunction< Return cfunc( Args... ) >(int argc, Variant ** argv) {
// Here comes the magic call of cfunc, something like :
if ( argc != mpl::count< Args... >::value )
throw std::runtime_error( "bad argument count" );
return cfunc( convertFromVariant< Args... >( argv[ X ] )... );
}

// Example use case :

int foo( int a, int b );

int main(void) {
int argc = 2;
Variant * argv[2] = { new IntVariant( 5 ), new IntVariant( 6 ) };

Variant * res = wrapCFunction< foo >( argc, argv );
IntVariant * intRes = dynamic_cast< IntVariant >( res );

return intRes ? intRes->value : -1;
}

最佳答案

使用 indices trick ,这很容易:

template<unsigned...> struct indices{};

template<unsigned N, unsigned... Is>
struct indices_gen : indices_gen<N-1, N-1, Is...>{};

template<unsigned... Is>
struct indices_gen<0, Is...> : indices<Is...>{};

// assuming the parameters were actually like this
template<typename Return, typename... Args, unsigned... Is>
Variant* wrapCFunction(Return (*cfunc)(Args...), int argc, Variant** argv, indices<Is...>) {
return cfunc(convertFromVariant<Args>(argv[Is])...);
}

template<typename Return, typename... Args>
Variant* wrapCFunction(Return (*cfunc)(Args...), int argc, Variant** argv) {
if (argc != sizeof...(Args))
throw std::runtime_error("bad argument count");
return wrapCFunction(cfunc, argc, argv, indices_gen<sizeof...(Args)>());
}

请注意代码中的一些更改。首先,sizeof...(Args) 产生参数包中的参数数量。其次,我修复了函数的签名以将 cfunc 作为实际参数传递。

关于C++11 可变参数模板函数调用转发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12765182/

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