使用C++ 11 for()循环遍历vector <unique_ptr <mytype >>

Dim*_*nis 44 c++ vector unique-ptr c++11

我有以下一批代码:

std::vector<std::unique_ptr<AVLTree_GeeksforGeeks>> AVLArray(100000);

/* Let's add some objects in the vector */
AVLTree_GeeksforGeeks *avl = new AVLTree_GeeksforGeeks();
avl->Insert[2]; avl->Insert[5]; AVL->Insert[0];
unique_ptr<AVLTree_GeeksforGeeks> unique_p(avl);
AVLArray[0] = move(unique_p);
/* we do this for a number of other trees, let's say another 9...
...
...
Now the vector has objects up until AVLTree[9] */

/* Let's try iterating through its valid, filled positions */
for(auto i : AVLTree )
{
   cout << "Hey there!\n";    //This loop should print 10 "Hey there"s.
}
Run Code Online (Sandbox Code Playgroud)

茹罗.最后一部分,for()循环中的编译错误.

\DataStructures2013_2014\main.cpp||In function 'int main()':|
\DataStructures2013_2014\main.cpp|158|error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&) [with _Tp = AVLTree_GeeksforGeeks; _Dp = std::default_delete<AVLTree_GeeksforGeeks>; std::unique_ptr<_Tp, _Dp> = std::unique_ptr<AVLTree_GeeksforGeeks>]'|
e:\codeblocks\mingw\bin\..\lib\gcc\mingw32\4.7.1\include\c++\bits\unique_ptr.h|256|error: declared here|
||=== Build finished: 2 errors, 0 warnings (0 minutes, 0 seconds) ===|
Run Code Online (Sandbox Code Playgroud)

关于我做错了什么的任何想法?

Die*_*ühl 79

循环

for (auto i: AVLTree) { ... }
Run Code Online (Sandbox Code Playgroud)

试图使该范围的各元素的副本中AVLTree.begin()AVLTree.end().当然,std::unique_ptr<T>无法复制:std::unique_ptr<T>每个指针只有一个.它不会真正复制任何东西,而是窃取它.那会很糟糕.

您想要使用引用:

for (auto& i: AVLTree) { ... }
Run Code Online (Sandbox Code Playgroud)

......或者,如果你不修改它们

for (auto const& i: AVLTree) { ... }
Run Code Online (Sandbox Code Playgroud)

  • 怎么样`for(auto&amp;&amp; i : AVLTree) {//做某事}` (2认同)
  • @shuva:使用转发引用也可以。它适用于所有三种情况(非“const”范围、“const”范围和返回临时对象的范围,尽管后者应该相当不常见)。不过,资格将取决于提供的范围而不是预期用途。 (2认同)