gpt4 book ai didi

C++ 文件重定向

转载 作者:IT老高 更新时间:2023-10-28 22:35:55 26 4
gpt4 key购买 nike

为了更快的输入,我读到您可以执行 file-redirection 并包含一个已设置 cin 输入的文件。

理论上应该像下面这样使用:

App.exe inputfile outputfile

据我从 C++ Primer 书中了解到,以下 C++ 代码 [1] 应该从文本文件中读取 cin 输入,并且不需要任何其他特殊指示,例如 [2]

[2]

include <fstream>
ofstream myfile;
myfile.open ();

[1] 以下 C++ 代码...

#include <iostream>
int main()
{
int val;
std::cin >> val; //this value should be read automatically for inputfile
std::cout << val;
return 0;
}

我错过了什么吗?

最佳答案

要使用您的代码 [1],您必须像这样调用您的程序:

App.exe < inputfile > outputfile

你也可以使用:

App.exe < inputfile >> outputfile

在这种情况下,不会在每次运行命令时重写输出,而是将输出附加到已经存在的文件中。

有关在 Windows 中重定向输入和输出的更多信息,您可以找到 here .


请注意 < , >>>符号要逐字输入——在本说明中,它们不仅仅用于演示目的。所以,例如:

App.exe < file1 >> file2

关于C++ 文件重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18081565/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com