Чтение данных из файла в массив структур C ++ - PullRequest
0 голосов
/ 05 августа 2009

У меня есть пример файла TXT и я хочу прочитать содержимое файла в массив структур. Мой файл person.txt содержит 5 произвольных номеров по одному в каждой строке.

7
6
4
3
2

Моя программа выглядит так:

#include <iostream>
#include <fstream>

using namespace std;

struct PersonId
{
    typedef PersonId* ptr;
    PersonId();
    int fId;
}; 

istream& operator >> (istream& is, PersonId &p)
{
    is >> p;
    // return is;
    // return p.read(is);
}

// istream& PersonData::read(std::istream& is) 
// {
//  is >> fId;
//  return is;
// }


int main ()
{
    ifstream indata;
    int i, is;
    indata.open("persons.txt", ios::in); // opens the file

    if(!indata) 
    { // file couldn't be opened
          cout << "Error: file could not be opened" << endl;
          exit(1);
    }

    int n = 5;
    PersonId* p;
    p = (PersonId*) malloc (n * sizeof(PersonId));

    while ( !indata.eof() )
    { // keep reading until end-of-file
        // p[i].read();
        indata >> is;
        i++;
        cout << "The next number is "<< is << endl;
            cout << "PersonId [" << i << "] is " << p[i].fId << endl;
        // indata >> is; // sets EOF flag if no value found
    }
    return 0;
}

Мой вывод выглядит так:

test6.cpp: In function ‘std::istream& operator>>(std::istream&, PersonId&)’:
test6.cpp:27: warning: control reaches end of non-void function
The next number is 7
PersonId [1] is 0
The next number is 6
PersonId [2] is 0
The next number is 4
PersonId [3] is 0
The next number is 3
PersonId [4] is 0
The next number is 2
PersonId [5] is 0

Ответы [ 2 ]

2 голосов
/ 05 августа 2009
istream& operator >> (istream& is, PersonId &p)
{
    is >> p.fId;
    return is;
}

(чтение элемента p из p, а не всей структуры)

И пока в основном, прочитайте структуру, а не значение:

вместо

indata >> is;

положить

indata >> p[i];
0 голосов
/ 05 августа 2009

См. Ответ Нила Баттерворта на ifstream object.eof () не работает , чтобы узнать, как правильно читать из istream

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...