Vector的简单使用
生活随笔
收集整理的這篇文章主要介紹了
Vector的简单使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Mark一下
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);
?
總結
以上是生活随笔為你收集整理的Vector的简单使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 创建文件并设置NTFS权限
- 下一篇: 自定义流操作符 重载wcout