Microsoft Visual Studio: How to keep the console open without manually reading input?

后端 未结 6 561
轮回少年
轮回少年 2021-01-18 13:20

I\'m writing some C++ with Microsoft Visual Studio 2010 Express, and I\'m wondering if there is a way to display command output somewhere in the IDE instead of an external c

相关标签:
6条回答
  • 2021-01-18 13:49

    In VC++ use

    Console::WriteLine(L"my error text");
    

    Printf won't produce any output. Neither will OutputDebugString. The Console will write at the bottom of the test results output, so all you have to do is double-click on the test in the "Test Results" window.

    0 讨论(0)
  • 2021-01-18 13:57

    I think Debug.Write (and related) should do what you're looking for. Writes to the VS output window.

    0 讨论(0)
  • 2021-01-18 13:58

    I've found a solution that is not really elegant, but at least it works. I'm using a fixture in my unit testing framework (Boost.Test) which does system("pause") in the tear down method:

    struct Global_fixture {
        Global_fixture() {}
    
        ~Global_fixture()
        {
            system("pause");
        }
    };
    BOOST_GLOBAL_FIXTURE(Global_fixture)
    

    I hope you guys can find a better way.

    0 讨论(0)
  • 2021-01-18 14:00

    In c++ you want to use : OutputDebugString

    0 讨论(0)
  • 2021-01-18 14:07

    If you're running unit tests, you're not debugging, right? So use "Run withut debugging" and the console window will stay open.

    Alternatively, open a command prompt of your own and launch the exe by typing its name.

    0 讨论(0)
  • 2021-01-18 14:07

    Ctrl + F5 for quick test. The key combination keeps the console open until you close it.

    0 讨论(0)
提交回复
热议问题