在源程序一这个简单的程序中,使用visual studio 2005 / 2008调试时会出错:
fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory(意思是找不到iostream.h头文件)
造成这样的原因是iostream.h是旧式的C++输入输出头文件,是在C++标准确立之前就使用的,没有名字空间。
iostream是标准确定的输入输出头文件,所有函数、符号、变量等都包含在std名字空间下。
在vc6中包含有iostream和iostream.h,在visual studio 2005 / 2008中只包含iostream.修改为源程序二即可。
(源程序一)
- #include <iostream.h>
- int main()
- {
- cout<<"Hello World/n"<<endl;
- return 0;
- }
(源程序二)
- #include <iostream> //已修改
- using namespace std; //已修改
- int main()
- {
- cout<<"Hello World/n"<<endl;
- return 0;
- }
参考:
http://www.data10000.com/bbs/thread-91-1-317.html
<script type="text/javascript"> </script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>