07/06/18 21:00:58
>>730
Arrayに手を付けていいなら、
template <class Type, int Length_> Array
{
public:
static const int Length = Length_;
//...
};
class Color : public Array<unsigned char, 3> // RGBなので3
{
public:
static const int ColorDimension = Length;
//...
};