我正在研究结构向量。
当我尝试使用迭代器调用此函数时,如下所示:
vec2.erase (vec2.begin()+iter2);
它向我发送了这个错误:
"no match for 'operator+' in '(+vec2)->std::vector<_Tp, _Alloc>::begin [with _Tp = wordstype, _Alloc = std::allocator<wordstype>]() + iter2'"
我可以发送迭代器(或任何其他参数)吗?如果是,问题是什么?