c++ 顯式轉換中的問題
阿新 • • 發佈:2019-01-31
顯式轉換中的問題
auto test = (PCSTR)(String::Format("regex_match failed: \"%s\"", a_strAddress.c_str()));
String::Format 返回一個String型別臨時變數,我們把他稱為 “t”
他被要求顯示轉化為PCSTR, 內部實現為 return this._str.c_str()
最後賦值到 test
實際結果是, test 指向了一片空白,當然這片區域本來是有內容的, 但是 t 已經被編譯器析構了
我們看下asm
auto test = (PCSTR)(String::Format("regex_match failed: \"%s\"" , a_strAddress.c_str()));
00007FF650F33F5D mov rcx,qword ptr [a_strAddress]
00007FF650F33F64 call std::basic_string<char,std::char_traits<char>,std::allocator<char> >::c_str (07FF650F0C1EEh)
00007FF650F33F69 mov r8,rax
00007FF650F33F6C lea rdx,[string "regex_match failed: " %s"" (07FF650F72638h)]
00007FF650F33F73 lea rcx,[rbp+358h]
00007FF650F33F7A call norlib::String::Format<char const * __ptr64> (07FF650F0B0E6h)
00007FF650F33F7F mov qword ptr [rbp+458h],rax
00007FF650F33F86 mov rax,qword ptr [rbp+458h]
00007FF650F33F8D mov qword ptr [rbp+460 h],rax
00007FF650F33F94 mov rcx,qword ptr [rbp+460h]
00007FF650F33F9B call norlib::String::operator char const * __ptr64 (07FF650F0D058h)
00007FF650F33FA0 mov qword ptr [rbp+1B8h],rax
00007FF650F33FA7 lea rcx,[rbp+358h]
00007FF650F33FAE call norlib::String::~String (07FF650F0CDD3h)
throw std::exception("");
注意最後的 throw 語句我們是為了標記前一句語句結束用的
我們看到t 這個String物件被析構了
所以String物件在顯示轉換返回的內部_str.c_str() 的內容也失效了
如果把語句改成
auto test2 = String::Format("regex_match failed: \"%s\"", a_strAddress.c_str()).ToLower();
ToLower 內部實現如下:
string String::ToLower()
{
auto strLower = string(_str);
std::transform(_str.begin(), _str.end(), strLower.begin(), ::tolower);
return strLower;
}
此時 t這個String物件仍然會被析構, 但是 test2 這個 string 仍然有效, 因為我們返回的不再是一個內部指標,而是一個string物件