我正在尝试使用我调用vector<Competition> CompPop()
的函数构建一个向量。我想返回类型为vector<Competition>
的矢量信息。下面是我返回向量的函数的代码和我的Competition
类的标题。
我收到以下错误(我正在使用Visual Studio,错误信息非常基本,让我猜测我实际上做错了什么):
-error C2065:'竞争':未声明的标识符
'CompPop'使用未定义的类'std :: vector'
'竞争':未声明的标识符
错误C2133:'info':未知大小
错误C2512:'std :: vector':没有合适的默认构造函数
错误C2065:'竞争':未声明的标识符
错误C2146:语法错误:缺少';'在标识符'temp'之前
错误C3861:'temp':找不到标识符
错误C2678:二进制'[':找不到运算符,它采用'std :: vector'类型的左手操作数(或者没有可接受的转换)
#pragma once
#include <fstream>
#include <sstream>
#include <iostream>
#include <string>
#include <vector>
#include "LogIn.h"
#include "Registration.h"
#include "Tree.h"
#include "PriorityQueue.h"
#include "Events.h"
#include "Competition.h"
using namespace std;
vector<Competition> CompPop()
{
ifstream myfile("Results.txt");
string line, tcomp, tleader, tfollower, tevents, tplacement;
vector<Competition> info;
istringstream instream;
if(myfile.is_open())
{
int i = 0; // finds first line
int n = 0; // current vector index
int space;
while(!myfile.eof())
{
getline(myfile,line);
if(line[i] == '*')
{
space = line.find_first_of(" ");
tleader = line.substr(0+1, space);
tfollower = line.substr(space + 1, line.size());
}
else
{
if(line[i] == '-')
{
tcomp = line.substr(1, line.size());
Competition temp(tcomp, tleader, tfollower);
info[n] = temp;
}
else
{
if(!line.empty())
{
line = line;
space = line.find_first_of(",");
tevents = line.substr(0, space);
tplacement = line.substr(space + 2, line.size());
info[n].pushEvents(tevents,tplacement);
}
if(line.empty())
{
n++;
}
}
}
}
}
else
{
cout << "Unable to open file";
}
myfile.close();
return info;
}
我的比赛标题:
#pragma once
#include <fstream>
#include <sstream>
#include <iostream>
#include <string>
#include <vector>
#include "LogIn.h"
#include "Registration.h"
#include "Tree.h"
#include "PriorityQueue.h"
#include "Events.h"
#include "CompPop.h"
using namespace std;
struct Competition
{
public:
Competition(string compName, string lead, string follow)
{
Name = compName;
Leader = lead;
Follower = follow;
}
void pushEvents(string name, string place)
{
Events one(name, place);
Eventrandom.push_back(one);
}
string GetName()
{
return Name;
}
string GetLeader()
{
return Leader;
}
string GetFollow()
{
return Follower;
}
string GetEvent()
{
return Event;
}
string GetScore()
{
return Score;
}
~Competition();
private:
string Name, Leader, Follower, Event, Score;
vector<Events> Eventrandom;
};
答案 0 :(得分:1)
您的源文件中似乎没有#include
Competition
的标题。
顺便说一句,看起来你的标题中还有using namespace std;
。 This is not a good practice
根据更新的信息进行修改:
这是一个循环依赖问题。
如果您只是在CompPop.h中转发声明Competition
并声明CompPop
,并将CompPop
的实现添加到CompPop.cpp,那么您将打破循环。
所以将CompPop.h更改为:
#pragma once
#include <vector>
struct Competition;
std::vector<Competition> CompPop();
答案 1 :(得分:0)
看起来你错过了包括或使用陈述。
即丢失Component的标题,或者std :: vector的标题,或者两者兼而有之。
同时确保您拥有using namespace std;
或using std::vector;
如果不是这种情况,请提供更多代码,以便我们对其进行全面检查。
[编辑] 根据您的评论进行更新 你在使用包含警卫吗?