首页 > 代码库 > C和C++的头文件总结

C和C++的头文件总结

stdafx.h

  的英文全称为:Standard Application Framework Extensions(标准应用程序框架的扩展)


iostream.h

  是input output stream的简写,意思为标准的输入输出流头文件。


iomanip.h

  是I/O流控制头文件,就像C里面的格式化输出一样,在新版本的c++中头文件已经用iomanip取代了iomanip.h,其中io代表输入输出,manip是manipulator(操纵器)的缩写        (在c++上只有缩写才有效)。

C和C++的头文件总结