对于循环没有被执行

时间:2012-07-31 22:29:14

标签: c++ visual-c++

我有以下代码片段,我正在尝试将一些语句打印到XML文件中:

void parseXML::writeStruct(std::fstream& abc,std::string prnt)
{
    for (map<string,struct structSet>::iterator it = structData.begin();it != structData.end();it++)
    {
      if (((it->second.parent.compare("")==0) && (it->second.written == false)))
      {
        bool write = true;
        if (it->second.type.compare("")==0)
        {
            for (set<std::string>::iterator i = it->second.fields.begin(); i != it->second.fields.end(); i++)
            {
                map<string,struct fieldSet>::iterator fd = fieldData.find(*i);
                if (fd != fieldData.end())
                {
                    std::string type = fd->second.type;
                    map<string,struct structSet>::iterator ntC = structData.find(type);
                    if (ntC != structData.end())
                    {
                        if (ntC->second.type.compare("") != 0)
                        {
                           map<string,struct structSet>::iterator ntC = structData.find(ntC->second.type);
                           if (ntC == structData.end()|| ntC->second.type.compare("")!= 0||ntC->second.written == false)
                           {  
                              continue;
                           }

                        }
                        else
                        {
                            map<string,struct structSet>::iterator ntC = structData.find(ntC->second.type);
                            if (ntC->second.parent.compare(it->second.name))
                            {
                            }
                            else if (ntC->second.written == true)
                            {
                                abc << INDENT << "\t" <<"\t" << "<nonterminal ref= \"" << ntC->second.name.c_str() << "\">" << std::endl;
                                abc << INDENT << "\t" << "\t" <<"\t" << "<name>" << fd->second.name.c_str() << "</name>" << std::endl;
                                abc << INDENT << "\t"<< "\t" << "</nonterminal >" << std::endl;
                            }
                        }
                    }

问题是它没有执行第一个for循环:

for (map<string,struct structSet>::iterator it = structData.begin(); it != structData.end(); it++)

可能的原因是什么?

1 个答案:

答案 0 :(得分:2)

这是一个(希望)完整列表,对于明显的条目感到抱歉,但我们不知道你是多么有经验:

  • structData为空
  • structData已损坏,导致应用程序崩溃
  • parseXML::writeStruct从未被执行
  • for循环已执行,但以下(iffor)条件失败,您错误地解释了这一点。

选择调试器或添加跟踪消息(不要忘记使用endl,因为输出通常是行缓冲的,并且在发生崩溃时会丢失。)

注意:仅发布代码的相关部分,其余部分仅为我们提供噪音(除非您需要进行https://codereview.stackexchange.com/的代码审查)