标签:length c++类 小问题 html eof com int 支持 www.
std::wstring ws=L"kkkk";
int il=ws.length();
int ia=sizeof(ws);
int ib=sizeof("dddd");
int ic=sizeof(L"kkkk");输出为
il=4,ia=32,ib=5,ic=10
为什么ia=32 ?
wstring到底对L"kkkk"做了什么?
http://www.debugease.com/vc/2171974.html
标签:length c++类 小问题 html eof com int 支持 www.
原文地址:http://www.cnblogs.com/findumars/p/7296199.html