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;
上一篇: jquery编程开发中禁用右键实现示例
下一篇: Python简单生成随机姓名的方法示例