Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个分段错误,我的程序崩溃了。我仍然希望能够看到我在崩溃前所做的打印。
我尝试调试它并越过“cout”行,但在崩溃期间或之后我仍然看不到输出。
基本上我有一个向量迭代器,想看看它的内容,但使用调试器真的很难。如果您对此有解决方案,那将比解决输出案例更好。
谢谢 :)
使用cerr而不是cout因为cout缓冲其输出。cerr在大多数情况下速度较慢,但始终将其用于调试打印。
cerr
cout
更多信息