2010年9月17日
摘要: // 各种字符串类型之间的转换#include <atlbase.h>#include <iostream>using namespace std;int main(){// UNICODE 到 MBCS(多字节字符集){LPOLESTR lpw = L"Hello,你好";size_t wLen = wcslen(lpw) + 1;int aLen = ::WideCha... 阅读全文
posted @ 2010-09-17 14:24 云中君 阅读(5671) 评论(0) 推荐(0) 编辑