0

我不太明白为什么我的程序会打印出奇怪的数字,我相信它是地址数字......我试图从文件中读取数据,然后将它们存储在类实例中......文件有id,x,y,z 在一行中....它有 10 行,因此我要创建 10 个类实例..很高兴您的帮助...^^

class planet
{
public:
    int id_planet;
    float x,y,z;
};

void report_planet_properties(planet& P)
{
    cout<<"Planet's ID: "<<P.id_planet<<endl;
    cout<<"Planet's coordinates (x,y,z): ("<<P.x<<","<<P.y<<","<<P.z<<")"<<endl;
}

planet* generate_planet(ifstream& fin)
{
    planet* p = new planet;
    fin >> (*p).id_planet;
    fin >> (*p).x;
    fin >> (*p).y;
    fin >> (*p).z;
    return (p);
}

int main()
{
    planet* the_planets[10];
    int i=0;
    ifstream f_inn ("route.txt");
    if (f_inn.is_open())
    {
        f_inn >> i;
        for(int j=0;j<i;j++)
        {
            the_planets[j]=generate_planet(f_inn);
            report_planet_properties(*the_planets[i]);
            delete the_planets[j];
        }
        f_inn.close();
    }
    else cout << "Unable to open file";
}
4

2 回答 2

1

我不理解您代码的某些部分(例如,为什么您在 generate_planet 中创建新的行星实例),但我不是经验丰富的 C++ 程序员。但是,我修改了您的代码,发现这个可以工作:

#include <iostream>
#include <fstream>

using namespace std;

class planet
{
private:
    int id_planet;
    float x,y,z;
public:
    void generate_planet(ifstream& fin);
    void report_planet_properties();
};

void planet::report_planet_properties() {
    cout << "\nPlanet's ID: " << id_planet << endl;
    cout << "\nPlanet's coordinates (x,y,z): ("<< x <<","<< y <<","<< z<<")"<<endl; 
}

void planet::generate_planet(ifstream& fin) {

fin >> id_planet;
fin >> x;
fin >> y;
fin >> z;
} 

int main() {

planet the_planets[10];
int i=0;
ifstream f_inn("route.txt");
if (f_inn.is_open())
{
    f_inn >> i;
    for(int j=0;j<i;j++)
    {
        the_planets[j].generate_planet(f_inn);
        the_planets[j].report_planet_properties();
    }
    f_inn.close();
}
else cout << "Unable to open file\n";
return 0;
}

使用 route.txt:

2
1
4
5
6
2
7
8
9

给出:

Planet's ID: 1

Planet's coordinates (x,y,z): (4,5,6)

Planet's ID: 2

Planet's coordinates (x,y,z): (7,8,9)

如您所见,函数 generate_planet() 和 report_planet_properties() 现在是行星类的方法。

也许这可以帮助你。

于 2013-10-19T12:00:15.890 回答
1

如果您使用正确的索引,您的代码将起作用the_planets

 report_planet_properties(*the_planets[i]);

在上面的行中,您必须使用循环变量,j而不是i文件中的行星数量。

 report_planet_properties(*the_planets[j]);
于 2013-10-19T12:13:20.217 回答