可能重复:
Template Metaprogramming - Difference Between Using Enum Hack and Static Const
请说明以下实施电源模板时使用的enum
内容。
template<int B, int N>
struct Pow {
// recursive call and recombination.
enum{ value = B*Pow<B, N-1>::value };
};
template< int B >
struct Pow<B, 0> {
// ''N == 0'' condition of termination.
enum{ value = 1 };
};
int quartic_of_three = Pow<3, 4>::value;
我在维基百科上找到了它。在这种情况下,int
和enum
之间是否存在差异?
答案 0 :(得分:6)
如果您尝试使用static const int
的地址,可能会有所不同。在这种情况下,编译器将为static const int
生成存储。您无法获取enum
的地址,编译器将永远不会为其生成存储空间。
另见Template Metaprogramming - Difference Between Using Enum Hack and Static Const