亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

 更新時間:2013年05月17日 17:31:20   作者:  
本篇文章是對VC中預編譯的頭文件放那里的問題進行了詳細的分析介紹,需要的朋友參考下
用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

相關(guān)文章

  • C++ AVLTree高度平衡的二叉搜索樹深入分析

    C++ AVLTree高度平衡的二叉搜索樹深入分析

    這篇文章主要介紹了C++ AVLTree高度平衡的二叉搜索樹,二叉搜索樹雖可以縮短查找的效率,但如果數(shù)據(jù)有序或接近有序二叉搜索樹將退化為單支樹,查找元素相當于在順序表中搜索元素,效率低下
    2023-03-03
  • 基于C語言實現(xiàn)掃雷游戲

    基于C語言實現(xiàn)掃雷游戲

    這篇文章主要為大家詳細介紹了基于C語言實現(xiàn)掃雷游戲,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-11-11
  • OpenCV基于背景減除實現(xiàn)行人計數(shù)

    OpenCV基于背景減除實現(xiàn)行人計數(shù)

    本文主要介紹了如何使用OpenCV C++對視頻中的人流量進行統(tǒng)計。文中的示例代碼講解詳細,對我們學習OpenCV有一定的幫助,需要的可以了解一下
    2022-01-01
  • 最新評論