0

为什么我的对象没有被创建?
我怎样才能AllReferrals.push_back(this);从我的构造函数执行?

当我这样做时,我被告知

错误 C2065:“AllReferrals”:未声明的标识符

错误 C2228:“.push_back”左侧必须有类/结构/联合

如果我将列表初始化放在我得到的类之前

错误 C2065:“AllReferrals”:未声明的标识符

这是我的代码:

class Referral
{
public:
    string url;
    map<string, int> keywords;

    static bool submit(string url, string keyword, int occurrences)
    {
        //if(lots of things i'll later add){
        Referral(url, keyword, occurrences);
        return true;
        //}
        //else
        //    return false;
    }

private:
    list<string> urls;

    Referral(string url, string keyword, int occurrences)
    {
        url = url;
        keywords[keyword] = occurrences;
        AllReferrals.push_back(this);
    }
};

static list<Referral> AllReferrals;

int main()
{
    Referral::submit("url", "keyword", 1);
}
4

3 回答 3

3

当您从上到下阅读文件时,必须在使用之前声明 AllReferrals 名称。

如果没有声明,编译器不知道它的存在。这就是错误所说的。

要解决您的问题,只需在使用声明之前移动声明,并为您需要名称但尚未定义的类型使用“前向声明”。

#include <iostream>
#include <fstream>
#include <regex>
#include <string>
#include <list>
#include <map>

using namespace std;
using namespace tr1;

class Referral; // forward declaration
list<Referral> AllReferrals; // here 'static' is not needed

class Referral
{
public:
 string url;
 map<string, int> keywords;

 static bool submit(string url, string keyword, int occurrences)
 {
  //if(lots of things i'll later add){
   Referral(url, keyword, occurrences);
   return true;
  //}
  //else
  // return false;
 }

private:
 list<string> urls;

 Referral(string url, string keyword, int occurrences)
 {
  url = url;
  keywords[keyword] = occurrences;
  AllReferrals.push_back(this);
 }
};


int main()
{
 Referral::submit("url", "keyword", 1);
 cout << AllReferrals.size();
 cout << "\n why does that ^^ say 0  (help me make it say one)?";
 cout << "\n and how can i AllReferrals.push_back(this) from my constructor?";
 cout << " When I do it like so, I am told  error C2065: 'AllReferrals' : undeclared identifier";
 cout << " as well as error C2228: left of '.push_back' must have class/struct/union.";
 cout << " If I put the list initialization before the class I get error C2065: 'AllReferrals' : undeclared identifier.";
 cout << "\n\n\t Thanks!";
 getchar();
}

正如评论者所添加的,另一个解决方案是将构造函数定义移动到 AllReferrals 定义下。无论如何,这始终是一个名称幻影顺序问题。

于 2009-09-03T22:06:42.910 回答
2

您的第一个问题是必须先声明 AllReferrals,然后才能使用它。但是,必须在声明 AllReferrals 之前定义 Referral 类。您可以通过拆分 Referral 构造函数的声明和定义来解决此问题,如下所示:

.
.
.
    Referral(string url, string keyword, int occurrences); // declaration
};

static list<Referral> AllReferrals;

Referral::Referral(string url, string keyword, int occurrences) // definition
{
    url = url;
    keywords[keyword] = occurrences;
    AllReferrals.push_back(this);
}
.
.
.

然后你需要意识到这this是一个指针,并且你已经声明了你的列表来存储实际的对象数据。您可以通过两种方式解决此问题:

  • 更改AllReferrals.push_back(this);AllReferrals.push_back(*this);. 这将导致将对象的副本放置在列表中,这将正常工作,但可能会影响性能。

  • 将声明更改static list<Referral> AllReferrals;static list<Referral *> AllReferrals;。这本身不会给你工作代码,因为Referral它是在本地创建的submit(),当你离开时submit(),对象将被丢弃并且指针悬空。您可以更改为Referral(url, keyword, occurrences);哪个将导致对象持续到d; 但是您必须确保在完成这些对象后以这种方式创建的所有对象,否则您会泄漏内存 - 不是永久的,当您的应用程序终止时,操作系统会在您之后清理,但如果你正计划创造很多。submit()new Referral(url, keyword, occurrences);deletedeleteReferral

于 2009-09-03T22:14:42.657 回答
1

尝试更多类似的东西:

...

class Referral;

static list<Referral> AllReferrals;

class Referral
{
...
};
于 2009-09-03T22:13:29.807 回答