検討:
std::string s_a, s_b;
std::stringstream ss_1, ss_2;
// at this stage:
// ss_1 and ss_2 have been used and are now in some strange state
// s_a and s_b contain non-white space words
ss_1.str( std::string() );
ss_1.clear();
ss_1 << s_a;
ss_1 << s_b;
// ss_1.str().c_str() is now the concatenation of s_a and s_b,
// <strike>with</strike> without space between them
ss_2.str( s_a );
ss_2.clear();
// ss_2.str().c_str() is now s_a
ss_2 << s_b; // line ***
// ss_2.str().c_str() the value of s_a is over-written by s_b
//
// Replacing line *** above with "ss_2 << ss_2.str() << " " << s_b;"
// results in ss_2 having the same content as ss_1.
質問:
stringstream.str(a_value);の違いは何ですか。およびstringstream<<a_value; 具体的には、最初の方法で<<を介した連結が許可されないのに、2番目の方法で連結が許可されるのはなぜですか。
ss_1がs_aとs_bの間に空白を自動的に取得したのはなぜですか?しかし、行***を置き換えることができる行に空白を明示的に追加する必要がありss_2 << ss_2.str() << " " << s_b;
ますか?