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.
目前,
我正在使用 Xcode 在 C++ 中进行一些编程。我打开了调试窗口并运行了一个简单的程序,例如这个程序,但没有输出。它没有运行,因为快捷方式 cmnd+r 不起作用。您究竟如何才能使该快捷方式再次起作用。
#include <iostream> using namespace std; int main() { cout << "Hi"; return 0; }