J'ai le lot de code suivant:
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.
}
Ruh roh. Erreur de compilation à la dernière partie, dans la boucle 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) ===|
Des idées sur ce que je fais mal?
La boucle
for (auto i: AVLTree) { ... }
essaie de faire une copie de chaque élément de la plage dans AVLTree.begin()
et AVLTree.end()
. Bien sûr, std::unique_ptr<T>
Ne peut pas être copié: il n'y a qu'un std::unique_ptr<T>
Pour chaque pointeur. Il ne copierait pas vraiment quoi que ce soit mais plutôt voler ça. Ce serait mauvais.
Vous souhaitez utiliser des références à la place:
for (auto& i: AVLTree) { ... }
... ou, si vous ne les modifiez pas
for (auto const& i: AVLTree) { ... }