Generic Programming with C++ Template
■ このスレッドは過去ログ倉庫に格納されています
0053デフォルトの名無しさん
NGNGtemplate<int N>
class Pow
{
public:
static const int result = Pow<N-1>::result * N;
};
class Pow<1>
{
public:
static const int result = 1;
};
//...
const int a = Pow<5>::result;
//...
■ このスレッドは過去ログ倉庫に格納されています