一个成员在C中枚举

参见英文答案 >
static const Member Value vs. Member enum : Which Method is Better & Why?                                    7个

我在c:
https://stackoverflow.com/a/1506856/5363中偶然发现了关于整数幂问题的答案

我非常喜欢它,但我不太明白为什么作者使用一个元素枚举而不是显式的某个整数类型.有人能解释一下吗

最佳答案 AFAIK这与旧编译器有关,不允许您定义编译时常量成员数据.使用C 11,你可以做到

template<int X, int P>
struct Pow
{
    static constexpr int result = X*Pow<X,P-1>::result;
};
template<int X>
struct Pow<X,0>
{
    static constexpr int result = 1;
};
template<int X>
struct Pow<X,1>
{
    static constexpr int result = X;
};

int main()
{
    std::cout << "pow(3,7) is " << Pow<3,7>::result << std::endl;
    return 0;   
}
点赞