我正在嘗試將雙精度矢量寫入二進制文件。 做完這些之後,我想閱讀它。這似乎並不奏效。 下面是代碼:將矢量<double>寫入二進制文件並再次讀取
ofstream bestand;
vector<double> v (32);
const char* pointer = reinterpret_cast<const char*>(&v[0]);
size_t bytes = v.size() * sizeof(v[0]);
bestand.open("test",ios::out | ios::binary);
for(int i = 0; i < 32; i++)
{
v[i] = i;
cout << i;
}
bestand.write(pointer, v.size());
bestand.close();
ifstream inlezen;
vector<double> v2 (32);
inlezen.open("test", ios::in | ios::binary);
char byte[8];
bytes = v2.size() * sizeof(v2[0]);
inlezen.read(reinterpret_cast<char*>(&v2[0]), bytes);
for(int i =0; i < 32; i++){
cout << endl << v2[i] << endl;
}
此輸出 「0 1 2 3 0 0 0 ......」,因此它似乎它正確地讀取第一個4號。
'write()'大小參數不正確。它應該是'v.size()* sizeof(double)'。 – hmjd
@ K-ballo'skipws'不適用於無格式輸入。 –