拜求大神,c++将文件中的值读入类的对象中,再将对象存入vector容器中 以下是代码 #incl
拜求大神,c++将文件中的值读入类的对象中,再将对象存入vector容器中以下是代码#include<vector>#include<iostream>#include<...
拜求大神,c++将文件中的值读入类的对象中,再将对象存入vector容器中
以下是代码
#include <vector>
#include <iostream>
#include <fstream>
#include <stdlib.h>
using namespace std;
class Hehe
{
int id;
string des;
public:
Hehe(){}
Hehe(int a,string b):id(a),des(b){}
int Getx(){return id;}
};
void main()
{
fstream p("a.txt",ios::in|ios::binary);
if (p.fail())
{
cout << "p文件打开失败";
exit(0);
}
vector<Hehe> h;
while (!p.eof())
{
Hehe hehe;
p.read((char*)&hehe, sizeof(Hehe));
h.push_back(hehe);
}
}
运行出现如图情况,求大神指导。 展开
以下是代码
#include <vector>
#include <iostream>
#include <fstream>
#include <stdlib.h>
using namespace std;
class Hehe
{
int id;
string des;
public:
Hehe(){}
Hehe(int a,string b):id(a),des(b){}
int Getx(){return id;}
};
void main()
{
fstream p("a.txt",ios::in|ios::binary);
if (p.fail())
{
cout << "p文件打开失败";
exit(0);
}
vector<Hehe> h;
while (!p.eof())
{
Hehe hehe;
p.read((char*)&hehe, sizeof(Hehe));
h.push_back(hehe);
}
}
运行出现如图情况,求大神指导。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询