1

我在 .h 文件中声明了一个 std::map

#include "pl.h"
#include <conio.h>
#include <iostream>
#include <fstream>
#include <string>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
#include <vector>
#include <map>

using namespace std;

class ReadingXDSLfile
{
public:

     ReadingXDSLfile();
     ~ReadingXDSLfile();
     void readDotXDSLFile(string fileName, ifstream &file);
     void writeNodesList();


protected:
    typedef std::map<std::string, int> nodesMap;

    nodesMap nodes;

    std::vector<string> nodesName;
    std::map<std::string, int>::iterator nodeItr, nodeItr1;
    string outFileName;
private:
};

并且在 .cpp 文件中,当我尝试使用以下代码行插入项目时,它会给出访问冲突错误

int counter=0;
string strNode;
...
....
....
std::pair<string, int>prNode (strNode, counter);
     nodes.insert(prNode);

错误:

Unhandled exception at 0x0043c5d9 in testMMHC.exe: 0xC0000005: Access violation reading location 0x0000002c.

现在我在函数(.cpp 文件)中声明了一个临时映射变量,它允许我插入。但是当我将临时映射复制到头文件中声明的全局映射时,它会进入无限循环并且永远不会退出。

它发生在头文件中声明的所有映射变量中。

4

1 回答 1

2

首先,在你的头文件中为你的地图声明一个 typedef 是可以的,但不要声明变量本身,除非你使用extern. 应该只有一个,并且应该在您的 .cpp 文件中。

在 .h 文件中:

#include <map>
#include <string>

typedef std::map<std::string, int> NodeMap;
extern NodeMap nodes;

接下来,您的 .cpp 文件:

NodeMap nodes;

最后,关于插入,你有很多可能的方法来做到这一点。

std::string strIndex = "foo";
int value = 0

// one way.
nodes[strIndex] = value;

// another way
nodes.insert(NodeMap::value_type(strIndex,value));

举几个例子。

编辑: OP 更改了问题的源内容,现在显示这nodes不是全局的,而是另一个类的成员变量。这个答案中的所有内容都extern变得毫无意义。

违规的偏移量表明迭代器之一或类本身正在通过空指针引用。0x2C 距离 NULL 有 44 字节深,这向我表明被引用的ReadingXDSLfile 对象可能来自 NULL 指针。

如果没有来自 OP 关于如何分配和访问被引用对象的更多信息,我敢肯定,我只能提供一个关于如何在标头中外部变量的定义明确的教程,这应该是显而易见的与这个问题无关。

于 2012-10-13T20:30:27.123 回答