1.在VS的开发者命令提示DOS下编译cpp文件:cl /EHsc HelloWorld.cpp
HelloWorld.cpp
#include <iostream> int main(int argc, char const *argv[]) { std::cout<<"Hello World!\n"; return 0; }
#include <iostream> 尖括号代表引用的是环境变量
#include "AppDelegate.h" 双引号代表引用的是具体路径
std是输入输出的名称空间
cout是类名
2.
原文:http://www.cnblogs.com/zhuawang/p/6720802.html