我有按预期工作的代码:
EscapedString es("Abc&def");
EscapedString es2("");
es2 = es; // es2 == Abc%26def
以及无法按预期工作的代码:
EscapedString es("Abc&def");
EscapedString es2 = es; // es == Abc%2526def
在第二种情况下,调用 CTOR2 而不是 CTOR3,即使它es
是 EscapedString。
EscapedString es(EscapedString("Abc?def"));
做正确的事,但我似乎无法在 CTOR3 上设置断点,所以我不确定它是否正常工作,或者代码已被优化或意外工作。
课程如下:
class EscapedString : public std::string {
public:
EscapedString(const char *szUnEscaped) { // CTOR1
*this = szUnEscaped;
}
EscapedString(const std::string &strUnEscaped) { // CTOR2
*this = strUnEscaped;
}
explicit EscapedString(const EscapedString &strEscaped) { // CTOR3
*this = strEscaped; // Can't set breakpoint here
}
EscapedString &operator=(const std::string &strUnEscaped) {
char *szEscaped = curl_easy_escape(NULL, strUnEscaped.c_str(), strUnEscaped.length());
this->assign(szEscaped);
curl_free(szEscaped);
return *this;
}
EscapedString &operator=(const char *szUnEscaped) {
char *szEscaped = curl_easy_escape(NULL, szUnEscaped, strlen(szUnEscaped));
this->assign(szEscaped);
curl_free(szEscaped);
return *this;
}
EscapedString &operator=(const EscapedString &strEscaped) {
// Don't re-escape the escaped value
this->assign(static_cast<const std::string &>(strEscaped));
return *this;
}
};