_bstr_t可接受多字節、UNICODE字符串,方便用以字符集轉換

使用_bstr_t須要包含的頭文件:spa

#include <comutil.h>
#include <comdef.h>

// test.cpp : 定義控制檯應用程序的入口點。
//

#include "stdafx.h"
#include <comutil.h>
#include <comdef.h>
#include <string>
using namespace std;

string ws2ms(const wstring& ws)
{
    _bstr_t t = ws.c_str();
    char* pchar = (char*)t;
    return pchar;
}

wstring ms2ws(const string& s)
{
    _bstr_t t = s.c_str();
    wchar_t* pwchar = (wchar_t*)t;
    return pwchar;
}

int _tmain(int argc, _TCHAR* argv[])
{
    string s = "123";
    wstring ws = L"456";

    ::MessageBoxA(0, s.c_str(), (char *)ws2ms(ws).c_str(), 0);
    ::MessageBoxW(0, ms2ws(s).c_str(), ws.c_str(), 0);

    return 0;
}
相關文章
相關標籤/搜索