(myFile>> a)做什么?

时间:2017-02-13 02:47:33

标签: c++ file input fstream

我一直在学习文件的输入,我在堆栈交换中发现了这段代码

int main(int argc, char * argv[])
{
std::fstream myfile("D:\\data.txt", std::ios_base::in);

float a;
while (myfile >> a)
{
    printf("%f ", a);
}

getchar();

return 0;
}

其他我认为使用过char计数器的地方,以及当循环停止时char == eof

while (myfile >> a)在做什么?

0 个答案:

没有答案