循环依赖......如何解决?

时间:2012-02-24 17:59:40

标签: c++ dependencies circular-dependency

我认为我有一个循环依赖问题,不知道如何解决它.... 要尽可能短: 我正在编写类似html解析器的代码。 我有一个main.cpp文件和两个头文件Parser.h和Form.h. 这些头文件包含整个定义......(我懒得制作相应的.cpp文件......

Form.h看起来像这样:

//... standard includes like iostream....

#ifndef Form_h_included
#define Form_h_included

#include "Parser.h"
class Form {
public:
    void parse (stringstream& ss) {

        // FIXME: the following like throws compilation error: 'Parser' : is not a class or namespace name
        properties = Parser::parseTagAttributes(ss);

        string tag = Parser::getNextTag(ss);
        while (tag != "/form") {
            continue;
        }
        ss.ignore(); // >
    }
// ....
};
#endif

和Parser.h看起来像这样:

// STL includes
#ifndef Parser_h_included
#define Parser_h_included

#include "Form.h"

using namespace std;

class Parser {
public:
    void setHTML(string html) {
         ss << html;
    }
    vector<Form> parse() {
        vector<Form> forms;

        string tag = Parser::getNextTag(this->ss);
        while(tag != "") {
            while (tag != "form") {
                tag = Parser::getNextTag(this->ss);
            }
            Form f(this->ss);
            forms.push_back(f);
        }
    }
// ...
};
#endif

不知道它是否重要,但我正在使用MS Visual Studio Ultimate 2010进行构建 它抛出了我 'Parser':不是类或命名空间名称

如何解决这个问题? 谢谢!

2 个答案:

答案 0 :(得分:5)

你可能想要做的是将方法声明留在标题中,如此

class Form {
public:
    void parse (stringstream& ss);
// ....
};

在源文件(即Form.cpp文件)中定义方法,如此

#include "Form.h"
#include "Parser.h"

void parse (stringstream& ss) {

    properties = Parser::parseTagAttributes(ss);

    string tag = Parser::getNextTag(ss);
    while (tag != "/form") {
        continue;
    }
    ss.ignore(); // >
}

这应解决您所看到的循环依赖问题......

答案 1 :(得分:1)

  1. 停止在标题中以词法方式定义您的成员函数。在源文件中定义它们。
  2. 现在,您可以在需要时利用前向声明(您不在此处)。