有些C编程需要stdafx.h,我给大家提供一个,供下载
2023-02-24 17:46:47 1KB stdafx
1
这个是常用到的系统库文件,stdafx.h文件
2021-09-26 11:08:44 669B 系统文件库
1
预编译头文件通过编译stdafx.cpp生成,以工程名命名,由于预编译的头文件的后缀是“pch”,所以编译结果文件是projectname.pch。 编译器通过一个头文件stdafx.h来使用预编译头文件。stdafx.h这个头文件名是可以在project的编译设置里指定的。编译器认为,所有在指令#include "stdafx.h"前的代码都是预编译的,它跳过#include "stdafx. h"指令,使用projectname.pch编译这条指令之后的所有代码。 因此,所有的MFC实现文件第一条语句都是:#include "stdafx.h"。在它前面的所有代码将被忽略,所以其他的头文件应该在这一行后面被包含。否则,你将会得到“No such file or directory”这样让你百思不得其解的错误提示。
2021-07-02 17:41:58 1KB StdAfx.h下载
1
StdAfx.h下载 stdafx.h : include file for standard system include files, or project specific include files that are used frequently, but are changed infrequently
2019-12-21 19:49:31 1KB StdAfx.h C++ C StdAfx.h下载
1