帮小弟我看看这句代码是什么意思

帮我看看这句代码是什么意思?
fstream   file( "reader.txt ",ios::in);

后面的ios::in是什么?

------解决方案--------------------
ios:in 以输入方式打开文件
fstream file( "reader.txt ",ios::in);
//定义输入输出文件流对象,以输入方式打开文件reader.txt
------解决方案--------------------
ios::in The file is opened for input. The original file (if it exists) will not be truncated.
这里是创建一个fstream的对象file,并调用fstream的构造函数对其初始化,以输入方式打开文件