如何把文件流作为参数传递c++ 就是fstream 这个头文件

2025-01-05 02:25:24
推荐回答(3个)
回答1:

引用传递。 举例:

#include
#include
using namespace std;
ofstream& function(ofstream &ofs)
{
return ofs;
}
int main()
{
ofstream ofs("in.txt");
function(ofs);
return 0;
}

回答2:

//最简单的实例
#include
#include
using namespace std;
int main(){
ifstream in("datain.txt");
ofstream out("dataout.txt");
int n;
in>>n;
out< return 0;
}

回答3:

//最简单的实例
#include

#include

using
namespace
std;
int
main(){
ifstream
in("datain.txt");
ofstream
out("dataout.txt");
int
n;
in>>n;
out<return
0;
}