欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

NET下编译C++代码时出现fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or director

程序员文章站 2022-08-09 21:56:07
在VS.NET 2008新建了一个win 32项目,引用以下头文件 #include "stdafx.h" #include

在VS.NET 2008新建了一个win 32项目,引用以下头文件
#include "stdafx.h"
#include<iostream.h>
编译出错:fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or directory

我以为是头文件前后顺序不对,但测试后发现不是这个原因。

后来上网调查说我没有引用命名空间,修改后
#include "stdafx.h"
#include<iostream.h>
using namespace std;
还是出同样的错误,后来发现还需要把#include<iostream.h>改为#include<iostream>。

因此正确的是:
#include "stdafx.h"
#include<iostream>
using namespace std;