gpt4 book ai didi

c++ - 如何在 C++ 中为元编程模板编写最后的递归

转载 作者:行者123 更新时间:2023-11-30 00:50:47 24 4
gpt4 key购买 nike

我写了下面的元编程模板:

template <unsigned int N, unsigned int P>
struct cutom_imagined
{
static unsigned int function(unsigned int r)
{
return (P + N + r) * cutom_imagined<N - 1>::function(r);
}
};

P其实就像一个常数。我应该如何为上面的例子编写最后的递归?我想它看起来应该类似于这个:

template <>
struct cutom_imagined<0, /* What should be here? */ >
{
static unsigned int function(unsigned int) { return 1; }
};

但是不知道怎么写...

最佳答案

使 P 成为模板和特化的一部分。首先,递归调用是:

return (P + N + r) * cutom_imagined<N - 1, P>::function(r);

其次,特化现在是部分的:

template <unsigned int P>
struct cutom_imagined<0, P>
{
static unsigned int function(unsigned int) { return 1; }
};

关于c++ - 如何在 C++ 中为元编程模板编写最后的递归,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23838217/

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