代码之家  ›  专栏  ›  技术社区  ›  Milan

C/C++从程序中添加到STDIN的输入?

  •  3
  • Milan  · 技术社区  · 15 年前

    这是可能的吗?

    假设代码有很多扫描行。在调试时,不是手动运行和手动添加值,而是可以用数据“馈送”stdin,以便当scanf开始读取时,它将读取输入的数据,而不需要与终端交互。

    3 回复  |  直到 12 年前
        1
  •  13
  •   RichieHindle    15 年前

    将测试行放入一个文件中,然后像这样运行程序:

    myprogram < mytestlines.txt
    

    总比黑客攻击你的程序以某种方式实现它好。

    在调试代码时,可以设置调试器以使用该命令行运行它。

        2
  •  4
  •   Mark Rushakoff    15 年前

    为了使程序更加通用,您可能需要考虑重写程序以使用 fscanf , fprintf 等等,这样它就可以处理文件IO,而不仅仅是控制台IO;然后,当您想从stdin读取或写入stdout时,您只需按照以下几行操作:

    FILE *infile, *outfile;
    
    if (use_console) {
        infile = stdin;
        outfile = stdout;
    } else {
        infile = fopen("intest.txt", "r");
        outfile = fopen("output.txt", "w");
    }
    fscanf(infile, "%d", &x);
    fprintf(outfile, "2*x is %d", 2*x);
    

    因为程序只处理stdin/stdout而不允许文件的频率是多少?尤其是如果您最终在shell脚本中使用了您的程序,那么在命令行上指定输入和输出可能更为明确。

        3
  •  0
  •   Li-chih Wu    12 年前
    int fd[2];
    pipe(fd);
    close(0); // 0:stdin
    dup(fd[0], 0); // make read pipe be stdin
    close(fd[0]);
    fd[0] = 0;
    
    write(fd[1], "some text", 9); // write "some text" to stdin