- 给项目添加一个stdafx.h和stdafx.cpp
- 在stdafx.h中添加所有需要的头文件,如
#include <vector>
#include <string>
- stdafx.cpp只需要包含stdafx.h
#include "stdafx.h"
- 打开项目属性,将
配置属性 - C/C++ - 预编译头 - 预编译头
改为使用
- 打开stdafx.cpp属性,将
配置属性 - C/C++ - 预编译头 - 预编译头
改为创建
- 在其他源文件中包含stdafx.h即可使用
// file "test.cpp"
#include "stdafx.h" // 相当于在test.h中包含了stdafx.h中的所有头文件
网友评论