无法使用复制功能

ato*_*red 1 c++ copy vector c++11

这是什么问题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;
Run Code Online (Sandbox Code Playgroud)

这是编译后的输出:

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 ==========
Run Code Online (Sandbox Code Playgroud)

bil*_*llz 7

std :: copy 3rd参数是一个迭代器,b.begin()代之以传递:

 #include <iterator>
 ...

 auto ret = std::copy(a.begin(), a.end(), b.begin());
Run Code Online (Sandbox Code Playgroud)

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

 vector<int> b(a.begin(), a.end());
Run Code Online (Sandbox Code Playgroud)

要么

 std::vector<int> b = a;
Run Code Online (Sandbox Code Playgroud)