我刚得到一台Macbook,我刚安装了gpp来用C++编写一些程序,但是当我包括iostream时,我得到了这个错误:
main.cpp:2: error: Requested include file not found
这是我的代码:

#include <iostream>

int main() {
    std::cout << "test" << std::endl;
}

谢谢你能帮我!

最佳答案

我在终端上使用了xcode-select --install,一切开始工作。
祝你好运

关于c++ - MacOSX上的IOstream,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53421455/

10-12 05:45