在 visual studio 中使用 freopen() 时,c++ 系统 ("pause") 无法正常工作

when using freopen() in visual studio c++ system("pause") is not working

我试图从 vs17 中的文件中读取。但是这里 system("pause") 不工作。此处的控制台 window 只是弹出并消失。 input.txt 文件只包含一个整数。

#include<iostream>
#include<stdio.h>
#include<cstdio>
#pragma warning(disable:4996)
using namespace std;
int main()
{
    freopen("input.txt", "r", stdin);
    int n;
    cin >> n;
    cout << n << endl;
    system("pause");
   return 0;
}

那么有什么方法可以从文件中读取并在控制台中显示输出,直到给出另一个键盘输入。提前致谢

关于system("pause");

的信息

至于 system("Pause") 及其用途:我不建议在任何旨在移植或分发的代码库中使用它,原因如下:Why is it wrong!

现在,如果您将它用于自己的快速肮脏黑客,以保持 windows 控制台打开只是为了测试小功能或 类 这很好,但是这里有一个替代方法可以做到既符合标准又便携

#include <iostream>
#include <string>

int main() {        
    [code...]

    std::cout << "\nPress any key to quit.\n";
    std::cin.get(); // better than declaring a char.
    return 0;
}

关于freopen()

的信息

另一件需要注意的事情是,您正在对一个文本文件调用 freopen(),但是在您完成该文件后,您永远不会调用它来关闭该文件;我不知道 freopen() 是否会自动为您执行此操作,但如果没有,那么您应该在退出程序之前以及从中提取所有需要的信息后关闭文件句柄。

这里是相关的 Q/A stack: freopen().

有关 freopen() 的更多信息,这是一个极好的资源网页:C: <cstdio> - freopen() & C++: <cstdio> - std::freopen()


我尝试 运行你的代码。

现在我可以测试你的程序了。如果您在调试模式下从调试器使用 Visual Studio 和 运行ning 应用程序,它会在完成后自动关闭应用程序。您可以 运行 它没有调试器( ctrl + F5 )或 运行 它来自控制台或终端 IDE 之外的生成的可执行文件的路径,程序将运行 以您期望的方式。

你要么不要乱用stdin来使用system("pause"),要么在使用后恢复它。

方法一:不要乱用stdin

#include<iostream>
#include<stdio.h>
#include<cstdio>
#include <fstream> // Include this
#pragma warning(disable:4996)
using namespace std;
int main()
{
    std::ifstream fin("input.txt");  // Open like this
    int n;
    fin >> n;  // cin -> fin
    cout << n << endl;
    system("pause");
   return 0;
}

使用单独的流读取文件使控制台读取保持隔离。

方法二:还原stdin

#include <io.h>  
#include <stdlib.h>  
#include <stdio.h>  
#include <iostream>

using std::cin;
using std::cout;

int main( void )  
{  
   int old;  
   FILE *DataFile;  

   old = _dup( 0 );   // "old" now refers to "stdin"   
                      // Note:  file descriptor 0 == "stdin"   
   if( old == -1 )  
   {  
      perror( "_dup( 1 ) failure" );  
      exit( 1 );  
   }  

   if( fopen_s( &DataFile, "input.txt", "r" ) != 0 )  
   {  
      puts( "Can't open file 'data'\n" );  
      exit( 1 );  
   }  

   // stdin now refers to file "data"   
   if( -1 == _dup2( _fileno( DataFile ), 0 ) )  
   {  
      perror( "Can't _dup2 stdin" );  
      exit( 1 );  
   }  
   int n;
   cin >> n;
   cout << n << std::endl;

   _flushall();  
   fclose( DataFile );  

   // Restore original stdin 
   _dup2( old, 0 );  
   _flushall();  
   system( "pause" );  
}

在这里你恢复原来的 stdin 以便 system("pause") 可以使用控制台输入。将其分解为 2 个单独的函数 override_stdinrestore_stdin 可能更易于管理。

方法 3:不要使用 system("pause")

您可以(可选地使用 MSVC 提供的 cl 命令行编译工具在控制台编译您的测试程序和)运行 在命令行上的程序,这样当程序退出时不会丢失输出.或者您可以搜索一些 IDE 选项,这些选项保留控制台以监视输出,或者您可以在最后一行放置一个断点。 (可能是 return 0) 可能有自己的 consequences/issues.