Mark一下
1 2 3 4 5 6 7 8 9 10 |
wstring tempword; vector <wstring> TempVec; tempword = _T("123"); TempVec.push_back(tempword); wstring tempword2; tempword2 = TempVec.at(0); MessageBox(0,tempword2.c_str(),0,0); |
转载请注明:exchen's blog » Vector的简单使用