我的结构数组的文件写入功能有问题。我收到错误,could not convert 'cars[n]' from 'car' to 'std::string {aka std::basic_string<char>}'
我对文件写作有点困惑,也许有人可以解释或给我一些提示如何使我的写作功能有效?
我的代码:
#include <iostream>
#include <string>
#include <sstream>
#include <stdlib.h>
#include <fstream>
using namespace std;
#define N_CARS 2
struct car{
string model;
int year;
double price;
bool available;
}cars [N_CARS];
void writeToFile(ofstream &outputFile, string x )
{
outputFile << x << endl;
}
int main ()
{
string mystr;
string mystr2;
string mystr3;
int n;
for (n=0; n<N_CARS; n++)
{
cout << "Enter title: ";
getline (cin,cars[n].model);
cout << "Enter year: ";
getline (cin,mystr);
stringstream(mystr) >> cars[n].year;
cout << "Enter price: ";
getline (cin,mystr2);
stringstream(mystr2) >> cars[n].price;
cout << "Choose availability: ";
getline (cin,mystr3);
stringstream(mystr3) >> cars[n].available;
}
ofstream outputFile;
outputFile.open("bla.txt");
for (n=0; n<N_CARS; n++)
writeToFile(outputFile, cars[n]);
outputFile.close();
system("PAUSE");
return 0;
}
我是否正确outputFile << x << endl;
将写入我的整个结构字段?
答案 0 :(得分:2)
我是否认为outputFile&lt;&lt; x&lt;&lt; ENDL;将写入文件我的整个结构字段?
以下内容:
void writeToFile(ofstream &outputFile, string x )
{
outputFile << x << endl;
}
与您的结构或字段完全无关。它写了一个字符串。
以下内容:
writeToFile(outputFile, cars[n]);
调用一个接受std::string
的函数,并尝试将car
传递给它。那不行。
您有多种选择:
使用<<
自行输出结构的每个成员。
为您的结构重载<<
运算符,以便您可以实际执行outputFile << mycar
,其中<<
将调用您的重载运算符。 (这是最好的选择。)
使您的结构可转换为std::string
。这会在以后转过来咬你,因为在某些时候你将不可避免地需要从流中读取你的结构,然后你将不得不使你的结构也可以从字符串转换为,这意味着字符串解析,这是一个丑陋且容易出错的业务。