衫裤跑路 2011-04-09 12:49 采纳率: 50%
浏览 244
已采纳

为什么循环内部的条件被认为是错误的?

I just found a comment in this answer saying that using iostream::eof in a loop condition is "almost certainly wrong". I generally use something like while(cin>>n) - which I guess implicitly checks for EOF, why is checking for eof explicitly using iostream::eof wrong?

How is it different from using scanf("...",...)!=EOF in C (which I often use with no problems)?

转载于:https://stackoverflow.com/questions/5605125/why-is-iostreameof-inside-a-loop-condition-considered-wrong

  • 写回答

4条回答 默认 最新

  • python小菜 2011-04-09 12:58
    关注

    Because iostream::eof will only return true after reading the end of the stream. It does not indicate, that the next read will be the end of the stream.

    Consider this (and assume then next read will be at the end of the stream):

    while(!inStream.eof()){
      int data;
      // yay, not end of stream yet, now read ...
      inStream >> data;
      // oh crap, now we read the end and *only* now the eof bit will be set (as well as the fail bit)
      // do stuff with (now uninitialized) data
    }
    

    Against this:

    int data;
    while(inStream >> data){
      // when we land here, we can be sure that the read was successful.
      // if it wasn't, the returned stream from operator>> would be converted to false
      // and the loop wouldn't even be entered
      // do stuff with correctly initialized data (hopefully)
    }
    

    And on your second question: Because

    if(scanf("...",...)!=EOF)
    

    is the same as

    if(!(inStream >> data).eof())
    

    and not the same as

    if(!inStream.eof())
        inFile >> data
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 有偿求码,CNN+LSTM实现单通道脑电信号EEG的睡眠分期评估
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)
  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路