1

我有以下代码

typedef ListDigraph::NodeMap<string> Node_names;
vector<ListDigraph::Node> initial_state;
vector<Node_names*> P_names;
//some loop
{
   Node_names name;
   ListDigraph::Node state = graph.addNode();
   initial_state = state;
   name[state] = "state1";
   P_names.push_back(&name);
}

void printin()
{
    cout<<P_names[0][initial_state[0]]
} 

在 printin 我得到错误:

error: no match for ‘operator[]’ in ‘((Translator*)this)->Translator::Process_state_name.std::vector<_Tp, _Alloc>::operator[] [with _Tp = lemon::DigraphExtender<lemon::ListDigraphBase>::NodeMap<std::basic_string<char> >*, _Alloc = std::allocator<lemon::DigraphExtender<lemon::ListDigraphBase>::NodeMap<std::basic_string<char> >*>, std::vector<_Tp, _Alloc>::reference = lemon::DigraphExtender<lemon::ListDigraphBase>::NodeMap<std::basic_string<char> >*&, std::vector<_Tp, _Alloc>::size_type = unsigned int](0u)[((Translator*)this)->Translator::Process_initial_state.std::vector<_Tp, _Alloc>::operator[] [with _Tp = lemon::ListDigraphBase::Node, _Alloc = std::allocator<lemon::ListDigraphBase::Node>, std::vector<_Tp, _Alloc>::reference = lemon::ListDigraphBase::Node&, std::vector<_Tp, _Alloc>::size_type = unsigned int](0u)]’

我如何访问各州的名称....

4

1 回答 1

1

您可能想要显示P_names[0][...]或类似的东西。你Node_names是一个定义,你可能不能像那样使用尖括号。想象一下,如果你删除了你的 typedef,你将不得不这样写:ListDigraph::NodeMap<string>[0][P_names[0]]. 这有意义吗?

如果您不提供更多信息,我们真的无法为您提供更多帮助,恐怕......

编辑:尝试(*P_names[0])["test"],也许可以做到(前提是你有所有必要的元素)。

您可以做的一件事是使用尽可能多的临时变量。您确实需要了解什么是类型P_names[0]*P_names[0]等等(*P_names[0])[...]。尝试编译代码,在纸上写下类名,查看文档中的一些图表,绘制图表(用铅笔在纸上),任何可以帮助您的东西了解发生了什么

您正在使用一个不为人知的库,即使这里的人们试图帮助您也很难,尤其是没有代码,或者更糟糕的是代码不是实际代码......

于 2013-06-18T15:23:56.673 回答