本文介绍了" ofstream的"作为函数参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法将输出流作为参数传递,如
$ b
我试过了,但它给了
错误:classstd :: basic_ofstream< char,std :: char_traits< char>>没有合适的拷贝构造函数
解决方案
当然有。只需使用参考。
就像那样:
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ code>
否则会调用复制构造函数,但没有为类 ofstream $ c定义$ c>。
Is there a way to pass output stream as argument like
void foo (std::ofstream dumFile) {}
I tried that but it gave
error : class "std::basic_ofstream<char, std::char_traits<char>>" has no suitable copy constructor
解决方案
Of course there is. Just use reference.Like that:
void foo (std::ofstream& dumFile) {}
Otherwise the copy constructor will be invoked, but there is no such defined for the class ofstream
.
这篇关于" ofstream的"作为函数参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!