我有以下非常简单的模板.据我所知,^不是指数运算符.现在我正在寻找一种计算这种能力的方法.互联网上有一个递归模板的例子.这不是太难了.
但是我想知道:C中是否在编译时实际上没有“内置”方法来计算?
template <int DIM> class BinIdx : Idx { static const int SIZE = 3 ^ DIM; // whoops,this is NOT an exponential operator! }