我使用a.out < file.txt
运行我的代码,当我尝试使用cin >> variable
向用户询问输入时,我读取了所有文件。
答案 0 :(得分:5)
当您使用a.out < file.txt
调用您的程序时,您要求shell将file.txt
内容作为a.out
的标准输入来管道让键盘提供标准输入。如果这不适合您,则添加命令行参数以指定文件名,使用ifstream
打开它并从中读取而不是cin
,使用cin
键盘输入。
例如:
int main(int argc, const char* argv[])
{
if (argc != 2)
{
std::cerr << "usage: " << argv[0] << " <filename>\n";
exit(1);
}
const char* filename = argv[1];
if (std::ifstream in(filename))
{
// process the file content, e.g.
std::string line;
while (getline(in, line))
std::cout << "read '" << line << "'\n";
}
else
{
std::cerr << "unable to open \"" << filename << "\"\n";
exit(1);
}
// can still read from std::cin down here...
}
答案 1 :(得分:1)
如果在stdin之后需要额外的用户输入,则必须打开名为&#34; / dev / tty&#34;的控制终端。例如:
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char *argv[])
{
ifstream tin("/dev/tty");
ofstream tout("/dev/tty");
tin.tie(&tout);
while (true) {
string input;
tout << "> ";
getline(tin, input);
if (input == "quit")
break;
}
return 0;
}
为了说服自己以上不会读取重定向文件,这是一个简单的测试:
$ echo "quit" | ./a.out
>