我有这个任务来编写和读取文件中的对象。但是我无法得到的是如何通过用户输入创建某个类的对象。我还在学习CPP。这是我的代码 我有一个想法,但不知道它是否会工作。创建对象如总线b1(var1,var2,var3,var4)。它会工作吗?
class Bus
{
private:
int busno;
string to;
string from;
float time;
public:
Bus()
{
busno=0;
to="";
from"";
time=0.0;
}
Bus(int busno,string to,string from,float time)
{
this->busno=busno;
this->to-to;
this->from=from;
this->time=time;
}
void Write()
{
fstream file;
file.open("output.txt");
file.fseekp(0,ios::end);
file.write((char*)this,sizeof(Bus));
file.close();
}
void Read()
{
fstream file;
file.open("output.txt");
file.fseekg(0,ios::beg);
while(file.read((char*)this,sizeof(Bus)));
{
cout<<"The bus no is "<<busno;
cout<<"The bus will run from "<<from;
cout<<"The bus will run till "<<to;
cout<<"The bus will run at time "<<time;
}
file.close();
}
};
int main()
{
int ch;
int busno;
string to,from;
float time;
while(1)
{
switch(ch)
{
case 1:
Bus b1(1234,x,y,19.30);
Bus.Write();
break;
case 2:
Bus.Read();
break;
}
}
return 0;
}
答案 0 :(得分:0)
这会编译吗?看起来不像。
你期望'ch'在哪里获得价值?
你无法在case语句中实例化 - 至少需要在花括号之间包含case语句内容。
成员函数调用应该看起来像'b1.Write();'。
最后,虽然编写二进制数据并将其读回应该可行,但它将是不可移植且易碎的。它可能在不同的编译器之间不起作用,并且几乎肯定不会在大端和小端系统之间起作用。