文件流ifstream ofstream

两个流函数包含再fstream 库函数中即 #include

创建流对象:

ifstream   Input; //  创建输入对象

Input.open(文件路径名);//打开文件

//读取信息

getline(Input, 变量名称);

Input.close();


ofstream  Output;//创建输出对象

Output.open(文件路径名);

Output<<"输出内容";//用法和cout类似

Output.close();//关闭流


·

你可能感兴趣的:(文件流ifstream ofstream)