无法使用复制功能

时间:2013-08-13 11:15:23

标签: c++ c++11 vector copy

copy(这是一个通用函数)有什么问题,在这里?我无法运行代码。

vector<int> a(10, 2);
vector<int> b(a.size());

auto ret = copy(a.begin(), a.end(), b);

for (auto i : b) cout << i << endl;

这是编译后的输出:

1>------ Build started: Project: Project1, Configuration: Debug Win32 ------
1>  MainEx.cpp
1>c:\program files (x86)\microsoft visual studio 11.0\vc\include\xutility(2176): error C4996: 'std::_Copy_impl': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators'
1>          c:\program files (x86)\microsoft visual studio 11.0\vc\include\xutility(2157) : see declaration of 'std::_Copy_impl'
1>          c:\users\amin\documents\visual studio 2012\projects\project1\project1\mainex.cpp(40) : see reference to function template instantiation '_OutIt std::copy<std::_Vector_iterator<_Myvec>,std::vector<_Ty>>(_InIt,_InIt,_OutIt)' being compiled
1>          with
1>          [
1>              _OutIt=std::vector<int>,
1>              _Myvec=std::_Vector_val<std::_Simple_types<int>>,
1>              _Ty=int,
1>              _InIt=std::_Vector_iterator<std::_Vector_val<std::_Simple_types<int>>>
1>          ]
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

4 个答案:

答案 0 :(得分:7)

std::copy第三个参数是迭代器,而是传递b.begin()

 #include <iterator>
 ...

 auto ret = std::copy(a.begin(), a.end(), b.begin());

更好的方法是从b构造a,在这种情况下,编译器知道一次分配所有需要的内存并构造来自a的元素:

 vector<int> b(a.begin(), a.end());

 std::vector<int> b = a;

答案 1 :(得分:4)

您需要传递一个迭代器,并且您正在传递std::vector<int>。在您的情况下,您应该通过b.begin()

auto ret = copy(a.begin(), a.end(), b.begin());
//                                    ^^^^^^^

当然,实现相同结果的简单方法是

vector<int> b = a;

答案 2 :(得分:3)

auto ret = copy(a.begin(), a.end(), b.begin());

应该做的。

std::copy的所有参数都需要是迭代器。

答案 3 :(得分:2)

您必须复制到b.begin(),因为copy的第三个参数是迭代器,而不是容器。

auto ret = copy(a.begin(), a.end(), b.begin());