不是用c ++从文件中读取数据

时间:2016-06-07 08:23:57

标签: c++ eclipse class oop file-handling

我编写了以下代码但由于某些我无法想象的原因,代码无法正常工作或从文件中读取数据。我确实把文件放在代码目录中,但它仍然无法正常工作。请帮我弄清楚出了什么问题。

#include<iostream>
#include<string.h>
#include<fstream>
#include<stdio.h>
#include<cstdlib>


using namespace std;

class author
{
public:
    string name;
    string email;
    string addr;

    friend class paper;
public:
    //author();
};

class paper
{
public:
    int id;
    string title;
    paper *ref[20];
    author a[8];


/*paper()
    {
        //ref[20]={};
    }*/
};

class reference
{
public:
    int pid;
    int refid[20];
};

int main()
{
paper *p[50];
fstream file;
file.open("data.txt",ios::in);

/*for(int i=0;i<50;i++)
{
if(!(file.eof()))
{
file.read((char*)p[i],sizeof(paper));
}
}*/


string s1,s2;
if(file)
{
    int i=0;
    while(!(file.eof()))
    {

        p[i]=new paper();

        getline(file,s1);
        p[i]->id = atoi(s1.c_str());
        getline(file,p[i]->title);

        //p[i]->ref = NULL;

        getline(file,s2);
        int k=atoi(s2.c_str());
        for(int j=0;j<k;j++)
        {
        getline(file,p[i]->a[j].name);
        getline(file,p[i]->a[j].email);
        getline(file,p[i]->a[j].addr);
        }

        for(int l=0;l<50;l++)
            {
                cout<<p[l]->id;
                cout<<p[l]->title;
                for(int j=0;j<k;j++)
                {
                    cout<<p[l]->a[j].name;
                    cout<<p[l]->a[j].email;
                    cout<<p[l]->a[j].addr;
                    cout<<"hello";
                }
            }
        i++;
    }

}
file.close();




/*  reference refobj[50];
    for(int i=0;i<50;i++)
{
    cin>>refobj[i].pid;
    for(int j=0;j<20;j++)
    {
        cin>>refobj[i].refid[j];
    }
}*/

ifstream fin;
fin.open("reference.txt");
reference refobj[50];
string s3,s4;
if(fin)
{
    while(!(fin.eof()))
    {
        for(int i=0;i<50;i++)
            {
                getline(fin,s3);
                refobj[i].pid= atoi(s3.c_str());
                for(int j=0;j<20;j++)
                {
                    getline(fin,s4);
                    refobj[i].refid[j]=atoi(s4.c_str());
                }
            }
    }
}
fin.close();



for(int i=0;i<50;i++)
{
    if(p[i]->id==refobj[i].pid)
    {
        for(int j=0;j<20;j++)
        {
            if(refobj[i].refid[j]!=0)
            {
                p[i]->ref[j]= p[j];
            }
        }
    }
}


return 0;
}

1 个答案:

答案 0 :(得分:1)

代码在控制台上没有显示任何内容?

Weel ...我不确定这是导致这个问题的原因,但是......你永远不会发送回车而你永远不会冲洗标准输出。

而不是

cout<<p[l]->id;
cout<<p[l]->title;
for(int j=0;j<k;j++)
 {
    cout<<p[l]->a[j].name;
    cout<<p[l]->a[j].email;
    cout<<p[l]->a[j].addr;
    cout<<"hello";
 }

尝试

cout << p[l]->id << endl;
cout << p[l]->title << endl;
for(int j=0;j<k;j++)
 {
    cout << p[l]->a[j].name << endl;
    cout << p[l]->a[j].email << endl;
    cout << p[l]->a[j].addr << endl;
    cout << "hello" << endl;
 }

En passant,我建议你仔细看看其他要点

---你使用paper *p[50]阵列的方式很危险,我很惊讶没有杀死你的程序

您声明了一个未分配指针数组

paper *p[50]

然后,在一个循环中,每次迭代分配一个指针

p[i]=new paper();

但是你在循环的每次迭代中都使用了所有50个指针(已分配和未分配)

for(int l=0;l<50;l++)
    {
    cout<<p[l]->id;
    cout<<p[l]->title;
    for(int j=0;j<k;j++)
        {
        cout<<p[l]->a[j].name;
        cout<<p[l]->a[j].email;
        cout<<p[l]->a[j].addr;
        cout<<"hello";
        }
    }

我想这应该会扼杀你的程序。

我认为你的意图是cout只有单篇论文分配的迭代i的数据(或者你怎么能确定k的最后一个值对所有50都有效论文?)这么简单

cout << p[i]->id << std::endl;
cout << p[i]->title << std::endl;
for(int j=0;j<k;j++)
    {
    cout << p[i]->a[j].name << endl;
    cout << p[i]->a[j].email << endl;
    cout << p[i]->a[j].addr << endl;
    cout << "hello" << endl;
    }

我强烈建议您避免直接使用动态分配。您可以简单地使用50 paper(不是指向paper

的数组
paper p[50];

或(恕我直言,更好)使用C ++容器;

之类的东西
std::vector<paper> p(50); 

---你从文件加载数据的方式是错误的;当你在最后一行被引导时,file.eof()仍然是false;因此,在循环检查!(file.eof())时读取文件,让您尝试另一次迭代,失败(但不测试)您的阅读。你应该检查每一个阅读;类似[警告:代码未经过测试]

// if p is an array (or a vector) of paper
for ( i = 0 ;    getline(file, s1) && getline(file, p[i].title)
              && getline(file, s2) ; ++i )
 {
   p[i].id = atoi(s1.c_str());

   int k = atoi(s2.c_str());

   cout << p[i].id << endl;
   cout << p[i].title << endl;

   for (int j = 0;    (j < k)
                   && getline(file, p[i].a[j].name)
           && getline(file, p[i].a[j].email)
           && getline(file, p[i].a[j].addr) ; ++j )
    {
      cout << p[i].a[j].name << endl;
      cout << p[i].a[j].email << endl;
      cout << p[i].a[j].addr << endl;
      cout << "hello" << endl;
    }
 }

---同样的问题阅读&#34; reference.txt&#34 ;;避免检查(仅)eof()