我想重写这个 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。