如何将这个矢量代码转换成class?

How to convert this vector code into a class?

我试图将此代码放入 class,但我无法做到。该函数的工作是从 .txt 文件中提取团队名称并将它们放入向量中。我认为主要问题是我无法 select 正确的函数 return 类型。

这是teams.txt:(“-”符号前的名字是球队,其他名字与我的问题无关,但他们是球队的教练。)

Trabzonspor-Abdullah Avcı+
Fenerbahçe-Vítor Pereira+
Beşiktaş-Sergen Yalçın+
Galatasaray-Fatih Terim+
İstanbul Başakşehir-Emre Belözeoğlu+
Alanyaspor-Bülent Korkmaz+
Fatih Karagümrük-Francesco Farioli+
Gaziantep-Erol Bulut+
Adana Demirspor-Vincenzo Montella+
Ankara Dinc-Nestor El Maestro+
Antalyaspor-Nuri Şahin+
Kayserispor-Hikmet Karaman+
Yeni Malatyaspor-Marius Sumudica+
Konyaspor-İlhan Palut+
Sivasspor-Rıza Çalımbay+
Hatayspor-Ömer Erdoğan+
Giresunspor-Hakan Keleş+
Kasımpaşa-Hakan Kutlu+

这是将它们放入向量中的我的代码:

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std; //I know that's a bad practice but i just need to do this for while

std::string process(std::string const& s) //A function to seperate teams from the coaches
{
    string::size_type pos = s.find('-');
    if (pos != string::npos)
    {
        return s.substr(0, pos);
    }
    else
    {
        return s;
    }
}


int main() {

    ifstream readTeam("teams.txt");
    if (!readTeam) {  //checking that successfully opened the file.
        std::cerr << "Error while opening the file.\n";
        return 1;
    }
    vector<std::string> teams;
    string team;
    while (getline(readTeam, team)) {
        teams.push_back(process(team));
    }
    readTeam.close();

    int g = 1;//for printing the teams, just for displaying it. doesn't have to in a class.
    for (const auto& i : teams) {
        cout << g;
        cout << i << endl;
        g++;
    }

    return 0;
}

这就是我所做的(尝试)使其成为 class:

#include <iostream>
#include <fstream>
#include <string>
#include <vector>

using namespace std;

std::string process(std::string const& s)
{
    string::size_type pos = s.find('-');
    if (pos != string::npos)
    {
        return s.substr(0, pos);
    }
    else
    {
        return s;
    }
}


class readFile {
public:
    void setTxtName(string);
    vector<unsigned char> const& getTeam() const{
    }
    vector<string> teams;

private:
    string fileName;
    
};

int main() {
    
    readFile pullTeams;

    pullTeams.setTxtName("teams.txt");
    

    return 0;
}

void readFile::setTxtName(string txtName) {
    fileName = txtName;
}

 
vector<string> const& readFile::getTeam { //problem is defining it(I think). So I couldn't add my main code int it..
    
    return teams;
}

有什么帮助,谢谢!

我根据 Botje 的 . And I manage to create an answer based on 做了一些不同的研究。

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std;


std::string process(std::string const& s){
    string::size_type pos = s.find('-');
    if (pos != string::npos){
        return s.substr(0, pos);
    }
    else{
        return s;
    }
}


class readFile {
public:
    vector<string> getTxt();
    bool read(string);

private:
    vector<string> teams;
    string team;
    ifstream txt;
};

int main() {
    
    vector<string> teams;

    readFile team;
    if (team.read("teaams.txt") == true)
        teams = team.getTxt();

    int g = 1;//for printing the teams, just for displaying it. doesn't have to in a class.
    for (const auto& i : teams) {
        cout << g;
        cout << i << endl;
        g++;
    }
    

    return 0;
}


bool readFile::read(string txtName) {
    ifstream txt;
    string team;

    txt.open(txtName.c_str());

    if (!txt.is_open())
        return false;
    while (getline(txt, team))
        teams.push_back(process(team));
    return true;
 }

vector<string> readFile::getTxt() {
    return teams;
}