fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory

用VS2005做单元测试,冒出不少拦路虎,其中一个就是添加了#include <iostream.h>后出现错误:

fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory

在网上找到了明确的说明,在http://hi.baidu.com/yowsah/blog/item/bafab311f0817a7dca80c4fa.html

 

有初学C++者经常会出现如下错误:

fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory。

这个错误一般在使用Visual C++ .NET 2005时出现。

原因,iostream.h为C类库,C++类库中应该为iostream。

另外cin,cout等函数在std命名空间中。使用时应加上using namespace std;

解决方法:将#include <iostream.h>

改为#include <iostream>
using namespace std;

 

感谢这位作者。

记录下来积累自己的经验。

你可能感兴趣的:(fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory)