我有一个模板类 Triple 的实现,它是一个包含任意三种类型的容器。我的问题是,我的类将三个对值的 const 引用作为参数,并且这些值必须是私有的(定义),但是,我还必须实现复制构造函数和重载赋值运算符。
template <typename T1, typename T2, typename T3>
class Triple
{
public:
Triple()
{ }
Triple(const T1 &a, const T2 &b, const T3 &c) : a(a), b(b), c(c)
{ }
// copy constructor
Triple(const Triple &triple) {
a = triple.first();
b = triple.second();
c = triple.third();
}
// assignment operator
Triple &operator=(const Triple& other) {
//Check for self-assignment
if (this == &other)
return *this;
a = other.first();
b = other.second();
c = other.third();
return *this;
}
private:
T1 const& a;
T2 const& b;
T3 const& c;
};
如果不分配给 const 变量,您将如何实现复制构造函数和赋值运算符?