#include <iostream>
using namespace std;
template<int base, int x>
struct Power {
static constexpr int a = base * (Power<base, x - 1>::a);
};
template<int base>
struct Power<base, 0> {
static constexpr int a = 1;
};
////////////////////////////我在这里创建变量模板失败。
template<int base, int x>
using power_v = typename Power<base, x>::a;
////////////////////////////
int main()
{
constexpr int y = power_v<3, 2>;
cout << y;
}