如何修复错误代码E1696?在Windows Visual Studio 2019中

时间:2019-08-11 05:12:25

标签: c++ visual-studio compiler-errors stdafx.h

所以我最近下载了Windows Visual Studio2019。我已经有一段时间没有编程了,我想用一个基本的“ hello world”程序刷新自己。但是由于某种原因,我的Stdafx.h标头出现错误。错误代码为E1696“无法打开源文件“ stdafx.h””,有人知道如何修复它吗?

1 个答案:

答案 0 :(得分:2)

Visual Studio中的默认预编译头曾经是stdafx.h。从那时起,默认名称已更改为pch.h,并且以后默认情况下禁用了预编译头。只需删除#include "stdafx.h"或将其更改为#include "pch.h"即可,具体取决于您的预编译头设置。如果不需要预编译的标头,则可以将其禁用。