Xcode 不显示控制台输出;如何刷新控制台?
我有一个简单的 C++ 程序,它使用 cout 和 printf 来记录内容,并且仅在程序关闭时才显示,但如果我使用 debug 逐步执行程序,则不会显示任何内容。有人遇到这个问题吗?
I have a simple C++ program that uses cout and printf to log stuff and it is only showing at the end when the program is closed but if I'm stepping through the program using debug nothing is shown. Did anybody have this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在练习c,请尝试
fflush
,如果您正在练习c++,请尝试cout << endl;
每次您想要打印时。If you're practicing c try
fflush
, if c++ trycout << endl;
each time you want to print.