3

现在每个模块都在写入标准错误,因此我无法关闭单个模块的输出。有谁知道我如何将流与标准输出相关联,因此每个模块都将写入独立的流,以便我可以将其关闭。例如:

fprintf(newStdout, "hello");

newStdout正在写入屏幕。我不知道如何newStdout与屏幕关联。

4

2 回答 2

4

来自http://www.cplusplus.com/reference/clibrary/cstdio/freopen/ - 它是一个 C++ 参考,但应该对 C 有效。

include <stdio.h>

int main ()
{
  freopen ("myfile.txt","w",stdout);
  printf ("This sentence is redirected to a file.");
  fclose (stdout);
  return 0;
}

我不认为你可以在每个模块的基础上做到这一点,因为stdoutstderr是全局变量。

于 2012-06-23T09:13:47.270 回答
2

如果您的目标是在某些时候newStdout表现得像stdout某些时候并在某些时候使其保持沉默,您可以执行以下操作:

// Global Variables
FILE * newStdout;
FILE * devNull;

int main()
{
  //Set up our global devNull variable
  devNull = fopen("/dev/null", "w");


  // This output will go to the console like usual
  newStdout = stdout;
  call_something_that_uses_newStdout();


  //This will have no output
  newStdout = devNull;
  call_something_that_uses_newStdout();


  //This will log to a file
  newStdout = fopen("log.txt","w");
  call_something_that_uses_newStdout();
  fclose( newStdout ); // -- If we don't close it here we'll never be able to close it;)

  //Clean up our global devNull
  fclose( devNull );
}
于 2012-06-26T00:48:59.067 回答