我正在使用模板元编程技术,而现在我只是在玩不同的做事方法。这是代码:

template<const int A>
struct iwrapper
{
    static const int num = A;
};

template<int A, int B>
constexpr iwrapper<A+B> operator+(iwrapper<A>, iwrapper<B>)
{
    return iwrapper<iwrapper<A>::num + iwrapper<B>::num>();
}

int main()
{
    constexpr iwrapper<2> first;
    constexpr iwrapper<4> second;

    constexpr auto answer = first + second;
}


当我尝试运行此命令时,它显示以下错误消息:

error: the value of 'first' is not usable in a constant expression


有人可以帮我找出原因吗?谢谢。

最佳答案

我在您的代码中看不到问题,并且在我的clang ++ 3.8.1中也没有问题。

但是我的g ++ 6.3.0也有同样的错误。

尝试使用较新版本的g ++(从g ++ 7.1.0开始)时,错误消失了。

因此,我认为该错误是旧版本的g ++中的错误,已从g ++ 7.1.0中更正。

关于c++ - constexpr运算符重载类模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51727179/

10-08 21:34