最初にファイルを作成して書き込もうとしていますが、「<<」を使用してファイルに書き込めません。2番目の部分では、ファイルからデータを読み込もうとしていますが、データをオブジェクトに保存して、後でプログラムでオブジェクトを使用できるようにしたいので、それが正しい方法であるかどうかはわかりません。どんな助けや提案も大歓迎です。前もって感謝します
void Employee::writeData(ofstream&)
{
Employee joe(37," ""Joe Brown"," ""123 Main ST"," ""123-6788", 45, 10.00);
Employee sam(21,"\nSam Jones", "\n 45 East State", "\n661-9000",30,12.00);
Employee mary(15, "\nMary Smith","\n12 High Street","\n401-8900",40, 15.00);
ofstream outputStream;
outputStream.open("theDatafile.txt");
outputStream << joe << endl << sam << endl << mary << endl;
//it says that no operator "<<"matches this operands, operands types are std::ofstream<<employee
outputStream.close();
cout<<"The file has been created"<<endl;
}
void Employee::readData(ifstream&)
{
//here im trying to open the file created and read the data from it, but I'm strugguling to figure out how to read the data and save it into de class objects.
string joe;
string sam;
string mary;
ifstream inputStream;
inputStream.open("theDatafile.txt");
getline(inputStream, joe);
getline(inputStream, sam);
getline(inputStream, mary);
inputStream.close();
}