1

我有简单的课程:

#include <utility>

template<class T, class... Ts>
T make(const Ts&... args) //generic class maker
{
    return T(args...);
}

template<class T>
class A
{
public:
    A(void)           : x_(T()), y_(T()) {}
    explicit A(int x) : x_(x), y_(x) {}
    A(int x, int y)   : x_(x), y_(y) {}
    A(const A& other) : x_(other.x_), y_(other.y_) {}
    A(A&& temp)       : x_(std::move(temp.x_)), y_(std::move(temp.y_)) {}

    auto& operator =(A other);
    auto& operator +=(const A& other);
    auto  operator + (const A& other) const;
private:
    T x_;
    T y_;
};

template<class T>
auto& A<T>::operator =(A<T> other)
{
    std::swap(*this, other); return *this;
}

template<class T>
auto& A<T>::operator+=(const A<T>& other)
{
    x_ += other.x_;
    y_ += other.y_;
    return *this;
}

template<class T>
auto A<T>::operator+(const A<T>& other) const
{
    return make<A<T>>(*this) += other;
}

int main()
{
    A<int> first(1);
    auto second = A<int>(2,2);
    auto third  = make<A<int>>(second+first);
    auto fourth = make<A<int>>(4);
    auto fifth  = make<A<int>>(5,5);
}

但是当我尝试从 *this 中推断出 operator+ 类型时,我得到了我没想到的奇怪错误:

template<class T>
auto A<T>::operator+(const A<T>& other) const
{
    return make<typename std::remove_cv<decltype(*this)>::type>(*this) += other;
}

int main()
{
    auto solo = A<int>();
    solo + solo;
}

错误:

error: passing 'const A<int>' as 'this' argument of 'auto& A<T>::operator+=(const A<T>&) 
[with T = int]' discards qualifiers [-fpermissive]
     return make<typename std::remove_cv<decltype(*this)>::type>(*this) += other;
                                                                        ^
error: use of 'auto& A<T>::operator+=(const A<T>&) [with T = int]' before deduction 
of 'auto'
error: invalid use of 'auto'
     return make<typename std::remove_cv<decltype(*this)>::type>(*this) += other;
                                                                           ^
error: invalid use of 'auto'

如果我是对的,make(...)应该创建新对象(应该没有 cv),那么为什么我会discards qualifiers [-fpermissive]出错?

4

2 回答 2

3

问题是您将const对象作为 的左侧参数传递operator+=,它是非const成员。为什么会这样?

让我们解析:

typename std::remove_cv<decltype(*this)>::type

this对于const成员函数将是A<T> const* const. 解引用给了我们A<T> const&(不是A<T> const!)。但是引用没有cv -qualifications,所以remove_cv实际上并没有做任何事情。结果,上面的类型是:

A<T> const&

这根本不是你想要的。您想创建 的副本this,而不是将 const 的引用绑定到this. 我们需要做的是删除引用。有一个类型特征:

typename std::decay<decltype(*this)>::type

所以你想做的是:

template<class T>
auto A<T>::operator+(const A<T>& other) const
{
    return make<std::decay_t<decltype(*this)>>(*this) += other;
}

但这非常复杂。我更喜欢这样的东西:

template <class T>
class A {
    ...
    friend A<T> operator+(A lhs, A const& rhs) {
        lhs += rhs;
        return lhs;
    }
};
于 2016-03-28T19:06:42.787 回答
2

*this是一个表达式,所以当用decltype它查询时会产生一个左值引用类型,因此,该std::remove_cv特征应用于引用类型,而它应该应用于引用的类型:

return make<typename std::remove_cv<
              typename std::remove_reference<decltype(*this)>::type
           >::type>(*this) += other;
于 2016-03-28T19:05:54.427 回答