基本的にベクトルを取得してファイルに書き込み、ファイルを開いてコンテンツを別のベクトルに書き込む次のコードがあります。
#include <fstream>
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<bool> q, p;
// ^^^^
q.resize(5, 0);
q[0] = 1;
q[2] = 1;
q[4] = 1;
ofstream ofile("file.log");
for (int i = 0; i<5; i++)
ofile <<q[i]<<" ";
ofile.close();
ifstream ifile("file.log");
p.resize(5);
int i = 0;
// vvvvvvvvvvvv
while(ifile>> p[i])
{
cout <<i<<"\t"<<p[i]<<endl;
i++;
}
ifile.close();
return 0;
}
私が気付いたのは、ベクトルに double、int、および long データ型が含まれている場合、このコードは問題なくコンパイルおよび実行されますが、bool に変更するとエラーが発生することです。これは私が得るエラーメッセージです:
../src/timeexample.cpp:31: error: no match for ‘operator>>’ in ‘ifile >> p.std::vector<bool, _Alloc>::operator[] [with _Alloc = std::allocator<bool>](((long unsigned int)i))’
では、なぜこれが起こるのか誰か知っていますか?
ありがとうございました