我已经阅读了所有类似问题的先前答案,它们似乎都与显示命令行项目的输出有关。如果您想以 Xcode 所称的“空”(没有文件、目标或构建配置的项目)的方式运行,该怎么办。
下面的代码构建成功。然而,“所有输出”控制台仍然没有显示结果。我试图深入研究 GDB 文档,但我是新手,我迷失在其中。
下面是代码:
#include <iostream>
using namespace std;
int main()
{
cout << "Come up and C++ me some time.";
cout << endl;
cout << "You won't regret it!" << endl;
std::cout << "Press any key to continue." <<endl;
cin.get();
cin.get();
return 0;
}
更糟糕的是,我的 C++ 班的老师在 3 次尝试后没有解决这个问题。