所以我最近下载了Windows Visual Studio2019。我已经有一段时间没有编程了,我想用一个基本的“ hello world”程序刷新自己。但是由于某种原因,我的Stdafx.h标头出现错误。错误代码为E1696“无法打开源文件“ stdafx.h””,有人知道如何修复它吗?
答案 0 :(得分:2)
Visual Studio中的默认预编译头曾经是stdafx.h
。从那时起,默认名称已更改为pch.h
,并且以后默认情况下禁用了预编译头。只需删除#include "stdafx.h"
或将其更改为#include "pch.h"
即可,具体取决于您的预编译头设置。如果不需要预编译的标头,则可以将其禁用。