如何在 stdin 上强制 eof ?

发布于 2024-10-12 05:05:23 字数 48 浏览 3 评论 0原文

对于 C++ 应用程序,如何以编程方式强制 stdin 上的文件结束 (EOF)?

For a C++ application, how can I programmatically force an end of file (EOF) on stdin?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云朵有点甜 2024-10-19 05:05:23

如果您使用的是类 Unix 系统中的终端,请按 Ctrl-D。在 Windows 中,Ctrl-Z

编辑:看到“以编程方式”执行此操作的愿望后,我建议尝试 fclose(stdin)。如果不知何故这还不够好,一个更疯狂的想法可能是使用 std::cin.rdbuf() 来将流设置为引用除真正的标准输入之外的其他内容,然后执行您想要的操作那条溪流。但这开始变得很糟糕,就像你在与计算机对抗一样,所以我想更多地了解真正的目标是什么。

If you're at a terminal in a Unix-like system, hit Ctrl-D. In Windows, Ctrl-Z.

Edit: Having seen the desire to do this "programmatically," I suggest trying fclose(stdin). If somehow that's not good enough, a crazier idea might be to use std::cin.rdbuf() to set the stream to refer to something other than the true stdin, and then do what you want to that stream. But this starts to smell bad, like you are fighting against the computer, so I'd like to know more about what the real goal is.

蓝色星空 2024-10-19 05:05:23

事实上,你不能。只要你能从stdin读取数据,EOF就还没有达到,事实上你永远也无法达到它。不过,您可以关闭 stdin 本身。要关闭它,请执行以下操作:

fclose(stdin);

此后,您将无法从 stdin 读取数据。

Actually, you cannot. As long as you can read data from stdin, EOF hasn't been reached, and in fact you can never reach it. You can close the stdin itself, however. To close it, do this:

fclose(stdin);

After this, you cannot read data from stdin.

妖妓 2024-10-19 05:05:23

对于专门为此创建的每个流,都有一个很好的小功能可用。

它的语法类似于:

      stream.setstate(stream.flags)

因此,在您的代码中,您可以有一个简单的条件来触发类似的内容:

      std::cin.setstate(std::cin.eofbit);

这方面的文档非常稀疏,但有一些 cppreference.comcplusplus.com

There's a nice little function available for every stream created especially for this.

It's syntax is something like:

      stream.setstate(stream.flags)

So in your code you can have a simple condition that triggers something like:

      std::cin.setstate(std::cin.eofbit);

The documentation for this is pretty sparse but there's some on cppreference.com and cplusplus.com.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文