由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请问怎么让输出文件不需要成为函数的参数
相关主题
fstream 扫盲,谢谢!一个较难的pythpn输出函数运行信息的project.
C++ ofstream的一个诡异问题一个极简单的程序求教
C++中怎么传递std::hex这样的参数啊c++ template中如何判断类型
问一个Matlab编程的问题,函数如何有可变输入参数? (转载)ofstream and cout question
java 可以用函数作为另一个函数的参数吗?Why no output file generate? What is wrong?
[合集] call-by-ref降低了C++程序可读性[合集] ofstream 无法使用binary mode的问题
再请教个:C变长参数的传递问题 (转载)怎么快速填充一个文件
C++函数避免长参数列表ostream& operator << (ostream& s, int cnt) error
相关话题的讨论汇总
话题: ofstream话题: 函数话题: 文件话题: 参数话题: 输出
进入Programming版参与讨论
1 (共1页)
h*******n
发帖数: 2052
1
比如 我有:
ofstream file;
我在很多函数里都需要输出到文件, file<<
如果每个函数都带上这个文件作为参数太麻烦了, 请问这个要怎么办呢?
D*******a
发帖数: 3688
2
encapsulate all your functions in a class

【在 h*******n 的大作中提到】
: 比如 我有:
: ofstream file;
: 我在很多函数里都需要输出到文件, file<<
: 如果每个函数都带上这个文件作为参数太麻烦了, 请问这个要怎么办呢?

h*******n
发帖数: 2052
3
can I declare the ofstream globally?
D*******a
发帖数: 3688
4
of course yes, but it taints your global namespace and hence is not a good
practice.

【在 h*******n 的大作中提到】
: can I declare the ofstream globally?
h*******n
发帖数: 2052
5
Thanks!
1 (共1页)
进入Programming版参与讨论
相关主题
ostream& operator << (ostream& s, int cnt) errorjava 可以用函数作为另一个函数的参数吗?
请问一个入门级 dynamic memory 的问题[合集] call-by-ref降低了C++程序可读性
C++ ofstream binary output slow再请教个:C变长参数的传递问题 (转载)
C++: Static initialization dependencyC++函数避免长参数列表
fstream 扫盲,谢谢!一个较难的pythpn输出函数运行信息的project.
C++ ofstream的一个诡异问题一个极简单的程序求教
C++中怎么传递std::hex这样的参数啊c++ template中如何判断类型
问一个Matlab编程的问题,函数如何有可变输入参数? (转载)ofstream and cout question
相关话题的讨论汇总
话题: ofstream话题: 函数话题: 文件话题: 参数话题: 输出