[C++]string 복사 주의점

string strCopy = strOrg.c_str();

이리 하시오. 왜냐?



string a = “Hello, world.”;
string b = a;
a.c_str() == b.c_str();
b+=”\n”;
a.c_str() != b.c_str();


이러하기 때문이오.