快乐招牌

文章
5
资源
0
加入时间
3年0月21天

C++模板编程:如何在编译器确定斐波那契数列?

使用模板元技术:template <int num>struct Fibonacci{ enum { result = Fibonacci<num-1>::result + Fibonacci<num-2>::result };};我们可以看到,上面实际上运用到了递归,递归总要有一个结束的时候,因此我们需要为它写两个特化版本...