国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C > 正文

淺談VC中預編譯的頭文件放那里的問題分析

2020-01-26 16:11:20
字體:
來源:轉載
供稿:網(wǎng)友
用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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 宜兴市| 宁安市| 新野县| 平定县| 株洲市| 响水县| 甘洛县| 兴安盟| 波密县| 木兰县| 中西区| 龙南县| 肥城市| 当阳市| 贵州省| 弋阳县| 崇文区| 丽江市| 勃利县| 两当县| 皮山县| 佛坪县| 德钦县| 大名县| 长乐市| 额济纳旗| 淮南市| 基隆市| 正安县| 远安县| 南宁市| 新余市| 旬邑县| 珲春市| 大宁县| 迁安市| 延边| 政和县| 独山县| 盱眙县| 武功县|