从 (const) *这用作模板函数模板参数推断的类型



>我有一个简单的类:

#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推断运算符+类型时,我遇到了我意想不到的奇怪错误:

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]错误呢?

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

让我们解析一下:

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

const成员函数的thisA<T> const* const 。取消引用会给我们带来A<T> const&(不是A<T> const!但是参考文献没有简历资格,所以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;
    }
};
*this是一个

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

return make<typename std::remove_cv<
              typename std::remove_reference<decltype(*this)>::type
           >::type>(*this) += other;

相关内容

  • 没有找到相关文章

最新更新