Purpose of stdafx.h [duplicate]

2019-01-01 09:13发布

This question already has an answer here:

What is the purpose of the file stdafx.h and what is meant by precompiled headers?

4条回答
君临天下
2楼-- · 2019-01-01 09:59

It's a precompiled header, to reduce compilation times.

查看更多
无与为乐者.
3楼-- · 2019-01-01 10:00

To expand on the other excellent answers:

stdafx.h is the file that includes all of the commonly used headers for a single project. This would include all of the Windows definitions, for example. Because this file includes so much stuff, the compiler gets a bit slow when processing it. By precompiling it, the compiler can skip much of the processing and reuse it over and over again; as long as none of the files included by it change, the precompiled result doesn't need to change either.

The name stdafx.h is just a convention. You could easily rename it to something else if you changed all your sources to include the new file instead.

To produce the actual precompiled header file, you need one source file in the project that has special compile flags to produce precompiled output. By convention this file is named stdafx.cpp, and if you inspect the settings for that source file you will see how it is different.

查看更多
荒废的爱情
4楼-- · 2019-01-01 10:04

It's typically used for the name of precompiled headers. Although using that exact name is not required, just the default. I explain more about pre-compiled headers on VC++ and g++ here.

You use precompiled headers for faster compilation.

The idea is that you put any header file that will not change, and that you use in several source files inside your precompiled header. Then the compiler will not need to reprocess those headers for each compilation unit.

查看更多
闭嘴吧你
5楼-- · 2019-01-01 10:05

stdafx.h is a file, generated by Microsoft Visual Studio IDE wizards, that describes both standard system and project specific include files that are used frequently but hardly ever change. Compatible compilers (for example, Visual C++ 6.0 and newer) will pre-compile this file to reduce overall compile times.

Visual C++ will not compile anything before the #include "stdafx.h" in the source file, unless the compile option /Yu'stdafx.h' is unchecked (by default); it assumes all code in the source up to and including that line is already compiled.

http://en.wikipedia.org/wiki/Precompiled_header

查看更多
登录 后发表回答