1

我想重写这个 for 循环(有效)

for (vector<shared_ptr<Node<int>>>::iterator it = n.root.children.begin();
    it != n.root.children.end(); 
    ++it) 
    {cout << (*it)->value<<flush;}

进入基于范围的 for 循环。我尝试的是

for (shared_ptr<Node<int>> child:(n.root).children){
       cout<<(child->value)<<" "<<flush;
    }

但它给了我一个核心转储。根是节点类型

template <typename T>
class Node{
public:
    T value;
    vector<shared_ptr<Node>> children;
};

main.cpp 中的这些行工作正常。

cout<<(n.root).value<<flush;
cout<<n.root.children.front()->value<<flush;

我使用 g++ 4.7.2。

4

1 回答 1

2

给你。试试这个。

for (auto v : n.root.children ) {
    cout << v->value << flush;
}
于 2012-10-08T18:54:43.297 回答