有一个类Test的简单例子
#include <algorithm>
#include <iterator>
#include <vector>
template <typename T>
struct MinMax { T min, max; };
template <typename T>
using TList = std::vector<T>;
template <typename T>
class Test
{
private:
const T a, b;
const MinMax <T> m;
public:
Test() : a(0), m{ 0, 0 }, b(0.0) {};
public:
T getA() const { return a; }
MinMax <T> & getMinMax() const { return m; }
T getB() const { return b; }
Test(const Test &t) : a(t.a), b(t.b), m(t.m ) {}
};
与常量数据成员。代替构造函数,数据不会改变。我想使用 std::inserter 将测试对象的向量复制到另一个向量。我很惊讶复制构造函数是不够的
int main()
{
TList <Test <double> > t1;
TList <Test <double> > t2;
Test<double> t;
t1.push_back(t);
std::copy(t2.begin(), t2.end(), std::inserter(t1, t1.begin()));
return 0;
}
并出现以下编译器错误(VS2015):
Error C2280 'Test<double> &Test<double>::operator =(const Test<double> &)': attempting to reference a deleted function Const
是否可以让数据成员 const 并以不同的方式执行副本(一些 hack :-))?或者必须定义运算符 =,因此数据成员不能是 const (不可能分配给具有 const 数据成员的对象)?
谢谢你的帮助。