メンバー関数を使用して検索するを作成std::ostringstream
せずに、のコンテンツを検索することは可能ですか?std::ostringstream::str()
std::string
std::string
私は次のものを持っており、の呼び出しごとにインスタンスを構築することを避けたいflush_()
:
#include <iostream>
using std::cout;
#include <ios>
using std::boolalpha;
#include <sstream>
using std::ostringstream;
#include <string>
using std::string;
class line_decorating_ostream
{
public:
line_decorating_ostream() { out_ << boolalpha; }
~line_decorating_ostream() { cout << out_.str(); }
template <typename T>
line_decorating_ostream& operator<<(const T& a_t)
{
out_ << a_t;
flush_();
return *this;
}
private:
ostringstream out_;
line_decorating_ostream(const line_decorating_ostream&);
line_decorating_ostream& operator=(const line_decorating_ostream&);
// Write any full lines.
void flush_()
{
string s(out_.str());
size_t pos = s.find('\n');
if (string::npos != pos)
{
do
{
cout << "line: [" << s.substr(0, pos) << "]\n";
s = s.substr(pos + 1);
} while (string::npos != (pos = s.find('\n')));
out_.clear();
out_.str("");
out_ << boolalpha << s;
}
}
};
int main()
{
line_decorating_ostream logger;
logger << "1 " << "2 " << 3 << " 4 " << 5 << "\n"
<< "6 7 8 9 10\n...\n" << true << "\n";
return 0;
}
[私が懸念しているパフォーマンスの問題は発生していません。これが可能かどうか知りたいです。]