0

我有以下代码:

int checkCorrectness(int i,char *iStr)
{
   if(atoi(iStr) == i)
     return 1;
   return 0;
}
void foo(int i)
{
    printf("inside foo %d\n",i);
}
void print()
{
    char mystring[100];
    freopen("myfile.txt","w+",stdout);
    for(int i =0;i < 100;++i)
    {
      foo(i);
      FILE *f = fopen("myfile.txt","r");
      if (f == NULL) perror ("Error opening file");
      else {
         while ( fgets (mystring , 100 , f) != NULL );
         if(!checkCorrectness(i,mystring);
            break;
         fclose (f);

      }
     }
    fclose(stdout);
}

这段代码保存了吗?我的意思是在调用 freopen 并且它的流没有关闭之后调用 fopen 可以吗?谢谢

4

1 回答 1

0

您的代码看起来很安全。您可以在一个进程中多次打开同一个文件。文件描述符不会相互作用。

我会避免像你一样重新打开标准输出。你可以用一个 fopen 完成整个程序,避免你正在创建的混乱:查找 fprintf!

于 2011-08-27T08:53:05.847 回答