C++ iostream和iostream.h的区别
2022-12-14 · 百度认证:北京惠企网络技术有限公司官方账号
#include<iostream.h>非标准输入输出流
#include<iostream>标准输入输出流
C++中为了避免名字定义冲突,特别引入了“名字空间的定义”,即namespace。
当代码中用<iostream.h>时,输出可直接引用cout<<x;//<iostream.h>继承C语言的标准库文件,未引入名字空间定义,所以可直接使用。
当代码中引入<iostream>时,输出需要引用std::cout<<x;如果还是按原来的方法就会有错。
iostream.h是inputoutputstream的简写,意思为标准的输入输出流头文件。它包含:
(1)cin>>"要输入的内容"
(2)cout<<"要输出的内容"
这两个输入输出的方法需要#include<iostream>头文件来声明。
iostream库的基础是两种命名为istream和ostream的类型,分别表示输入流和输出流。流是指要从某种IO设备上读出或写入的字符序列。
扩展资料:
iostream和iostream.h的用法
使用<iostream>和命名空间
#include<iostream>
usingnamespacestd;
intmain()
{
cout<<"<iostream>needtousenamespacestd!/n";
return0;
}
输出:
<iostream>needtousenamespacestd!
Pressanykeytocontinue
使用<iostream.h>,不引入命名空间
#include<iostream.h>
//usingnamespacestd;
intmain()
{
cout<<"<iostream>needtousenamespacestd!/n";
return0;
}
输出:
<iostream>needtousenamespacestd!
Pressanykeytocontinue
参考资料:百度百科——iostream.h
参考资料:百度百科——iostream
参考资料: