endOfFile

c++中的下列语句:

int value;

while( std::cin>>value)

 

这里的停止条件是:当输入的是 end-of-file 或者非法字符时

在不同的系统中,end-of-file 是不同的。

 

windows 下是 ctrl + z

unix和Mac os-x 机器上是ctrl + d.

 

下面摘自 c++ primer:

Operating systems use different values for end-of-file. On Windows
systems we enter an end-of-file by typing a control-zsimultaneously type
the "ctrl" key and a "z." On UNIX systems, including Mac OS-X machines, it
is usually control-d.

你可能感兴趣的:(unix)