手机
当前位置:查字典教程网 >编程开发 >C语言 >浅谈VC中预编译的头文件放那里的问题分析
浅谈VC中预编译的头文件放那里的问题分析
摘要:用C++写程序,肯定要用预编译头文件,就是那个stdafx.h.不过我一直以为只要在.cpp文件中包含stdafx.h就使用了预编译头文件,...

用C++写程序,肯定要用预编译头文件,就是那个stdafx.h.

不过我一直以为只要在.cpp文件中包含stdafx.h 就使用了预编译头文件,其实不对。

在VC++中,预编译头文件是指放到stdafx.h中的头文件才会有效果。

如下:

file: stdafx.h

复制代码 代码如下:

// stdafx.h : include file for standard system include files,

// or project specific include files that are used frequently, but

// are changed infrequently

//

#pragma once

#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.

#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.

#endif

#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers

复制代码 代码如下:

// 各位注意,要想使用预编译效果的头文件要放这里。

#include <Windows.h>

#include "xxx.h"

复制代码 代码如下:

// TODO: reference additional headers your program requires here

在stdafx.cpp中保持不变即可,默认如下:

复制代码 代码如下:

// stdafx.cpp : source file that includes just the standard includes

// CPPTestHelper.pch will be the pre-compiled header

// stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"

// TODO: reference any additional headers you need in STDAFX.H

// and not in this file

【浅谈VC中预编译的头文件放那里的问题分析】相关文章:

C++中队列的建立与操作详细解析

深入C++中API的问题详解

深入解析C++中的指针数组与指向指针的指针

指向变量的常指针与指向常变量的指针详细解析

获取一个文件行数的方法

C++算法之海量数据处理方法的总结分析

枚举和宏的区别详细解析

VC6.0常见编译错误提示附解决方法

C语言typedef与复杂函数声明问题的深入解析

概率的问题:使用递归与多次试验模拟的分析

精品推荐
分类导航