本文介绍了为什么stdfax.h应该首先包含在MFC应用程序中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道为什么此行在每个MFC应用程序中都存在(这迫使stdafx.h成为每个文件中包含的第一个标头):

I want to know why this line exists on every MFC app (which force to make stdafx.h the first header included in every file) :

#ifndef __AFXWIN_H__
    #error "include 'stdafx.h' before including this file for PCH"
#endif

此行为背后的原因是什么?

What are the reason(s) behind this behavior ?

推荐答案

仅当使用预编译头(PCH)时,并且#include "stdafx.h"之前不应有任何内容的原因是:

It's only true when using Precompiled Headers (PCH), and the reason why there shouldn't be anything before the #include "stdafx.h" is :

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

这篇关于为什么stdfax.h应该首先包含在MFC应用程序中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 18:30