0

我正在尝试从名为“weapon.txt”的文件中读取行并将它们输入到一个结构中,该结构的行很长

struct weapon
{
    char name[20]; //Edited
    int strength;
}

要读取的文件如下所示:

Excalibur
150
Throwing Stars
15
Rapier
200
Bow and Arrow
100
Axe
200
Crossbow
100
Scimitar
250
Rusted Sword
10
Soul Slayer
500

我现在的代码是

#include<fstream>
#include<iostream>
#include<cstring>

using namespace std;

struct WeaponInfo
{
    char name[16];
    int strength;
};

const int MaxWeap = 10;

void openfile(ifstream&); //Opening the file
void displayfile(ifstream&, WeaponInfo&);//Display file

int main ()
{
    WeaponInfo weapon[MaxWeap];
    ifstream fin;   
    openfile(fin);
    displayfile(fin, weapon[MaxWeap]);  
}


void openfile(ifstream& fin)
{
    fin.open("weapon.txt");
}

void displayfile(ifstream& fin, WeaponInfo& weapon[MaxWeap])
{
    char nm;
    int str;

    while (fin.eof() == 0)
    {
        for(int i = 0; i <= MaxWeap; i++);
        {
            fin.getline(nm);
            fin.getline(str);

            strcpy(weapon[i].name, nm);
            strcpy(weapon[i].strength, str);

            i++;
            cout << weapon[i].name << "\n" << weapon[i].strength << endl;
        }
    }
    fin.close();
}

编辑:这是我重新做之后现在所拥有的,我收到以下编译错误:将“武器”声明为引用数组;在函数 'void displayfile(...) 'fin' 未在此范围内声明;'weapon' 未在此范围内声明;ma,e 查找 'i' 已更改为 ISO 'for' 范围 [-fpermissive]。

4

3 回答 3

1

我首先倾向于使用std::string而不是 char 数组 - 它们更容易使用。所以现在的结构是这样的:

struct weapon
{
    string name;
    int strength;
};

接下来,您需要一些可以从输入流中读取结构的东西:

bool getWeapon( ifstream& is, weapon& w )
{
    getline(is, w.name) ;
    string strengthStr;
    getline(is, strengthStr) ;
    w.strength = strtol( strengthStr.c_str(), NULL, 0 );

    return !is.eof();
}

这里有两件事,我用作strtol从字符串到 int 的转换函数。atoi被使用,但strtol给你更多的灵活性,更重要的是,更好的错误检查,虽然我没有费心在这里实现它。Astringstream可能是这里的另一种选择。

其次,我返回一个布尔值,指示名称是否为空。这样做的原因是,稍后在代码中检查eof()ifstream 时,它实际上并没有设置,直到您读取文件末尾之后。所以最后一次好的阅读不会设置它,但第一次尝试重新阅读它会。然后在此处返回 false 将向调用者指示由于 ifstream 位于文件末尾而导致“获取”失败。

最后,我们需要一些东西来读取所有的武器:

ifstream input;
input.open("weapons.txt");
vector<weapon> ws;
if ( input )
{
    while (! (input.eof()))
    {
        weapon w;
        if ( ! getWeapon( input, w ) )
            break;

        ws.push_back( w );
    }
}
input.close();

这将把所有武器放入一个向量中。getWeapon如果没有阻止添加“空”武器,请注意对中断的调用。不是最迷人的解决方案,但它应该有效。

于 2012-05-24T10:41:20.150 回答
0

伪代码是这样的,(就像 Martol1ni 为你编码的一样):

open the file
while (!end-of file)
{
  create instance of struct weapon
  read a line and strcpy into weapon.name
  read a line and set weapon.strength = atoi(line)
  do something with the instance, eg. add to list, call a member function, etc.
}
loop
close file.
于 2012-05-24T10:21:24.520 回答
-1

假设您控制武器.txt,不必费心检查文件中的错误,您可以这样做。下一次,做一点研究...... :)

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

using namespace std;

struct weapon
{
string name;
int strength;
weapon(string n, int s) : name(n), strength(s) {}
};

void readFileToVec(vector<weapon> &myVec) {
    ifstream in("weapon.txt");
    while (!in.eof()) {
        string name;
        getline(in,name);
        string strength;
        getline(in,strength);
        weapon myWep(name,atoi(strength.c_str()));
        myVec.push_back(myWep);
    }
    in.close();
}
于 2012-05-24T10:15:46.277 回答