如何使用按位运算符来读取文件?

时间:2015-08-04 14:36:02

标签: c++ operator-overloading bit-manipulation ifstream

我正在尝试使用以下代码从.dat文件中读取:

ifstream input_file; 
double x;
while (input_file >> x) {...}

我不明白这实际上是如何工作的 - input_file >> x似乎正在使用正确的位移运算符。以什么方式实际读取文件?

0 个答案:

没有答案