我正在尝试学习 C++,但我不是 Windows 的粉丝,因此使用Visual Studio并不理想。不过,我的 Mac 上有Xcode。
我在 Visual Studio 中用 C++ 编写了一个程序,它运行良好。当我将代码传输到 Xcode(使用 c++ 工具环境)时,它仍然可以正常工作,但它不喜欢顶部的 #include 语句。为什么?
#include "stdafx.h"
#include <stdlib.h>
#include <iostream>
#include <time.h>
<...>
此外,如果我使用它而不是它仍然不喜欢它"..."
不会影响我可以看到的当前程序。
基本上我想知道它的重要性是什么?我是否或将来需要它?