template metaprogramming

Here is an example of metaprogramming in C++:


template <int N>
struct Factorial
{
    enum { value = N * Factorial<N - 1>::value };
};

template <>
struct Factorial<0>
{
    enum { value = 1 };
};

void fact()
{
    int x = Factorial<4>::value; // == 24
    int y = Factorial<0>::value; // == 1
}



你可能感兴趣的:(template metaprogramming)