mac下写c++

首先mac作为类unix系统必然是自带c编译器的,而且还带了三种,GCC4.2,LLVM-GCC 4.2,LLVM complier(Clang)。笔者的版本如下

wzddeMacBook-Pro:c++ wzd$ g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin15.0.0
Thread model: posix

无需像windows下还要安装MinGW,方便了很多。
可用的编辑器很多,vim和emas当然是必带了,也可以用sublime text。用st写完后按command+b编译生成可执行文件,在terminal中进入代码所在目录,执行./+名字即可。其中./指的是当前目录,如果不加会在整个系统中搜索。


注意在terminal中执行程序时,如果有while循环,window下使用ctrl+z停止,mac下是ctrl+d,注意不要按成command+ d。

你可能感兴趣的:(c++,sublime)