我没有 C++ 经验并想学习。我有 XCode,但 IDE 让我感到困惑,而且对于我目前的水平来说似乎太先进了。
我从这个http://www.cplusplus.com/doc/tutorial/program_structure/开始
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
我使用 C++ 格式将它输入到 SublimeText2 中,然后将文件保存在
Ryan>Desktop>ApplicationDevelopment>Sandbox as helloworld.cpp
我安装了 XCode,发现如何在 Unix 控制台/Mac 终端中运行 C/C++?
我去了终端,导航到它所在的目录并尝试:
make helloworld.cpp
它返回:
make: Nothing to be done for 'helloworld.cpp'
更新,希望下面的格式是清楚的
$g++
i686-apple-darwin10-g++-4.2.1:没有输入文件
$ g++ helloworld.cpp -o 输出名.bin
$(没有返回)
$ g++ helloworld.cpp helloApp ./helloApp
i686-apple-darwin10-g++-4.2.1:helloApp:没有这样的文件或目录
i686-apple-darwin10-g++-4.2.1: ./helloApp: 没有这样的文件或目录
$ g++ helloworld.cpp -o helloApp ./helloApp
ld:在 ./helloApp 中,无法与主可执行文件链接
collect2: ld 返回 1 个退出状态