iostream头文件的作用

时间:2023-01-22 11:44

在C谈话程序编纂页面会有许多的开首开头代码,个中有一个iostream头文件,那么iostream头文件的效用?

iostream头文件的作用

iostream头文件效用是让初学者有一个便利的命令行输入输出实习情况,iostream的设计初志是供给一个可扩展的类别安然的IO机制。iostream头文件包罗了操作输入输出流的方式,譬如以流的式样读取一个文件。

C++/C++11中头文件<iostream>界说了圭表输入/输出流器材。包蕴了<iostream>也主动包蕴了<ios>、<streambuf>、<istream>、<ostream>和<iosfwd>。

头文件<iostream>中的东西包含:

(1)、narrow characters(char)即窄字符:cin(standard input stream (object))、cout(standard output stream (object))、cerr(standard output stream for errors (object))、clog(standard output stream for logging (object));

(2)、wide characters(wchar_t)即宽字符:wcin(standard input stream (wide) (object))、wcout(standard output stream (wide) (object))、wcerr(standard output stream for errors (wide) (object))、wclog(standard output stream for logging (wide) (object))。