vector iterator incompatible一般原因是什么
1个回答
2017-09-27
展开全部
push_back是先申请内存,再拷贝,所以会调用vlcommand的operator=操作。
编译器默认的operator=是直接拷贝内存的。即使vs2005不报错,也很容易导致程序崩溃,因为input和output是vector类型,初始化时不能直接拷贝内存。
你应该自己定义operator=,既能通过编译也能保证赋值的正确行为。
C/C++ code?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
struct vlcommand
{
int a;
int b;
std::vector< int > input;
std::vector< int > output;
vlcommand& operator=(const vlcommand& vl)
{
if(this == &vl)
{
return *this;
}
a = vl.a;
b = vl.b;
input.vector<int>::vector(vl.input);
output.vector<int>::vector(vl.output);
return *this;
}
};
编译器默认的operator=是直接拷贝内存的。即使vs2005不报错,也很容易导致程序崩溃,因为input和output是vector类型,初始化时不能直接拷贝内存。
你应该自己定义operator=,既能通过编译也能保证赋值的正确行为。
C/C++ code?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
struct vlcommand
{
int a;
int b;
std::vector< int > input;
std::vector< int > output;
vlcommand& operator=(const vlcommand& vl)
{
if(this == &vl)
{
return *this;
}
a = vl.a;
b = vl.b;
input.vector<int>::vector(vl.input);
output.vector<int>::vector(vl.output);
return *this;
}
};
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询