我正在使用 gcc 4.6.1,并且得到了一些涉及调用constexpr
函数的有趣行为。该程序运行良好,并立即打印出来12200160415121876738
。
#include <iostream>
extern const unsigned long joe;
constexpr unsigned long fib(unsigned long int x)
{
return (x <= 1) ? 1 : (fib(x - 1) + fib(x - 2));
}
const unsigned long joe = fib(92);
int main()
{
::std::cout << "Here I am!\n";
::std::cout << joe << '\n';
return 0;
}
这个程序需要永远运行,我从来没有耐心等待它打印出一个值:
#include <iostream>
constexpr unsigned long fib(unsigned long int x)
{
return (x <= 1) ? 1 : (fib(x - 1) + fib(x - 2));
}
int main()
{
::std::cout << "Here I am!\n";
::std::cout << fib(92) << '\n';
return 0;
}
为什么会有如此巨大的差异?我在第二个程序中做错了吗?
编辑:我在g++ -std=c++0x -O3
64 位平台上编译它。