VC++类型转换

原文链接 http://www.moveforward.info/archives/78

 

1、CString to char*
经过类型强制转换,可以将CString类型转换成char*,例如:
CString cStr = “Hello,world!”;
char* zStr = (char*)(LPCTSTR)cStr;

2、char* to CString
char*类型可以直接给CString,完成自动转换,例如:
char* zStr = “Hello,world!”;
CString cStr = zStr;

3、CString to LPCSTR
将CString转换成LPCSTR,需要获得CString的长度,例如:
CString cStr = _T(“Hello,world!”);
int nLen = cStr.GetLength();
LPCSTR lpszBuf = cStr.GetBuffer(nLen);

4、CString to LPSTR
这个和第3个技巧是一样的,例如:
CString cStr = _T(“Hello,world!”);
int nLen = str.GetLength();
LPSTR lpszBuf = str.GetBuffer(nLen);

5、Char[] to int
将字符串类型转换成整数型,可以使用atoi函数,例如:
char c[10];
int n;
n = atoi©;

6、Char[] to float
和第5个技巧一样,使用atof()函数可以转换成float型,例如:
char c[10];
float f;
f = atof©;

7、Char* to int
和第5个技巧完全一样,例如:
char *str = “100″;
int i;
i = atoi(str);

一、其它数据类型转换为字符串

短整型(int)
itoa(i,temp,10);///将i转换为字符串放入temp中,最后一个数字表示十进制
itoa(i,temp,2); ///按二进制方式转换
长整型(long)
ltoa(l,temp,10);

二、从其它包含字符串的变量中获取指向该字符串的指针

CString变量
str = “2008北京奥运”;
buf = (LPSTR)(LPCTSTR)str;
BSTR类型的_variant_t变量
v1 = (_bstr_t)”程序员”;
buf = _com_util::ConvertBSTRToString((_bstr_t)v1);

三、字符串转换为其它数据类型
strcpy(temp,”123″);

短整型(int)
i = atoi(temp);
长整型(long)
l = atol(temp);
浮点(double)
d = atof(temp);

四、其它数据类型转换到CString
使用CString的成员函数Format来转换,例如:

整数(int)
str.Format(“%d”,i);
浮点数(float)
str.Format(“%f”,i);
字符串指针(char *)等已经被CString构造函数支持的数据类型可以直接赋值
str = username;

五、BSTR、_bstr_t与CComBSTR

CComBSTR、_bstr_t是对BSTR的封装,BSTR是指向字符串的32位指针。
char *转换到BSTR可以这样: BSTR b=_com_util::ConvertStringToBSTR(“数据”);///使用前需要加上头文件comutil.h
反之可以使用char *p=_com_util::ConvertBSTRToString(b);

六、VARIANT 、_variant_t 与 COleVariant

VARIANT的结构可以参考头文件VC98/Include/OAIDL.H中关于结构体tagVARIANT的定义。
对于VARIANT变量的赋值:首先给vt成员赋值,指明数据类型,再对联合结构中相同数据类型的变量赋值,举个例子:
VARIANT va;
int a=2001;
va.vt=VT_I4;///指明整型数据
va.lVal=a; ///赋值

对于不马上赋值的VARIANT,最好先用Void VariantInit(VARIANTARG FAR* pvarg);进行初始化,其本质是将vt设置为VT_EMPTY,下表我们列举vt与常用数据的对应关系:

unsigned char bVal; VT_UI1
short iVal; VT_I2
long lVal; VT_I4
float fltVal; VT_R4
double dblVal; VT_R8
VARIANT_BOOL boolVal; VT_BOOL
SCODE scode; VT_ERROR
CY cyVal; VT_CY
DATE date; VT_DATE
BSTR bstrVal; VT_BSTR
IUnknown FAR* punkVal; VT_UNKNOWN
IDispatch FAR* pdispVal; VT_DISPATCH
SAFEARRAY FAR* parray; VT_ARRAY|*
unsigned char FAR* pbVal; VT_BYREF|VT_UI1
short FAR* piVal; VT_BYREF|VT_I2
long FAR* plVal; VT_BYREF|VT_I4
float FAR* pfltVal; VT_BYREF|VT_R4
double FAR* pdblVal; VT_BYREF|VT_R8
VARIANT_BOOL FAR* pboolVal; VT_BYREF|VT_BOOL
SCODE FAR* pscode; VT_BYREF|VT_ERROR
CY FAR* pcyVal; VT_BYREF|VT_CY
DATE FAR* pdate; VT_BYREF|VT_DATE
BSTR FAR* pbstrVal; VT_BYREF|VT_BSTR
IUnknown FAR* FAR* ppunkVal; VT_BYREF|VT_UNKNOWN
IDispatch FAR* FAR* ppdispVal; VT_BYREF|VT_DISPATCH
SAFEARRAY FAR* FAR* pparray; VT_ARRAY|*
VARIANT FAR* pvarVal; VT_BYREF|VT_VARIANT
void FAR* byref; VT_BYREF

_variant_t是VARIANT的封装类,其赋值可以使用强制类型转换,其构造函数会自动处理这些数据类型。
例如:
long l=222;
ing i=100;
_variant_t lVal(l);
lVal = (long)i;

COleVariant的使用与_variant_t的方法基本一样,请参考如下例子:
COleVariant v3 = “字符串”, v4 = (long)1999;
CString str =(BSTR)v3.pbstrVal;
long i = v4.lVal;

七、其它

对消息的处理中我们经常需要将WPARAM或LPARAM等32位数据(DWORD)分解成两个16位数据(WORD),例如:
LPARAM lParam;
WORD loValue = LOWORD(lParam);///取低16位
WORD hiValue = HIWORD(lParam);///取高16位
对于16位的数据(WORD)我们可以用同样的方法分解成高低两个8位数据(BYTE),例如:
WORD wValue;
BYTE loValue = LOBYTE(wValue);///取低8位
BYTE hiValue = HIBYTE(wValue);///取高8位
后记:本文匆匆写成,错误之处在所难免,欢迎来信指正。
int ->str itoa,atoi
double- str ftoa,atof

_bstr_t,_variant_t,CString,long 等等看看下面:
我给你点详细的例子,看下面
先看懂_variant_t与_bstr_t这两个类的构造函数和 operator=
里面有重载了很多情况,
其他类型向_variant_t 赋值:

_variant_t( ) throw( );
_variant_t( const VARIANT& varSrc ) throw( _com_error );
_variant_t( const VARIANT* pVarSrc ) throw( _com_error );
_variant_t( const _variant_t& var_t_Src ) throw( _com_error );
_variant_t( VARIANT& varSrc, bool fCopy ) throw( _com_error );
_variant_t( short sSrc, VARTYPE vtSrc = VT_I2 ) throw( _com_error );
_variant_t( long lSrc, VARTYPE vtSrc = VT_I4 ) throw( _com_error );
_variant_t( float fltSrc ) throw( );
_variant_t( double dblSrc, VARTYPE vtSrc = VT_R8 ) throw( _com_error );
_variant_t( const CY& cySrc ) throw( );
_variant_t( const _bstr_t& bstrSrc ) throw( _com_error );
_variant_t( const wchar_t *wstrSrc ) throw( _com_error );
_variant_t( const char* strSrc ) throw( _com_error );
_variant_t( bool bSrc ) throw( );
_variant_t( IUnknown* pIUknownSrc, bool fAddRef = true ) throw( );
_variant_t( IDispatch* pDispSrc, bool fAddRef = true ) throw( );
_variant_t( const DECIMAL& decSrc ) throw( );
_variant_t( BYTE bSrc ) throw( );
operator=的重载形式:
_variant_t& operator=( const VARIANT& varSrc ) throw( _com_error );
_variant_t& operator=( const VARIANT* pVarSrc ) throw( _com_error );
_variant_t& operator=( const _variant_t& var_t_Src ) throw( _com_error );
_variant_t& operator=( short sSrc ) throw( _com_error );
_variant_t& operator=( long lSrc ) throw( _com_error );
_variant_t& operator=( float fltSrc ) throw( _com_error );
_variant_t& operator=( double dblSrc ) throw( _com_error );
_variant_t& operator=( const CY& cySrc ) throw( _com_error );
_variant_t& operator=( const _bstr_t& bstrSrc ) throw( _com_error );
_variant_t& operator=( const wchar_t* wstrSrc ) throw( _com_error );
_variant_t& operator=( const char* strSrc ) throw( _com_error );
_variant_t& operator=( IDispatch* pDispSrc ) throw( _com_error );
_variant_t& operator=( bool bSrc ) throw( _com_error );
_variant_t& operator=( IUnknown* pSrc ) throw( _com_error );
_variant_t& operator=( const DECIMAL& decSrc ) throw( _com_error );
_variant_t& operator=( BYTE bSrc ) throw( _com_error );

有了以上两个函数,举个例子:
double f=1.0
_variant_t v;
v=f;          //是合法的看看operator=的重载形式就知道了
CString str=”ddd”
_variant_t v;
v=str.AllocSysString() 或者v=(_bstr_t)(char*)str;
即可

_variant_t转换成别的形式
你首先必须确定你要转化成什么样的形式
double f;
_variant_t v
f=v.dblVal 即可或者f=(double)v;也可以

附:_variant_t的操作符
operator short( ) const throw( _com_error );
operator long( ) const throw( _com_error);
operator float( ) const throw( _com_error );
operator double( ) const throw( _com_error );
operator CY( ) const throw( _com_error );
operator bool( ) const throw( _com_error );
operator DECIMAL( ) const throw( _com_error );
operator BYTE( ) const throw( _com_error );
operator _bstr_t( ) const throw( _com_error );
operator IDispatch*( ) const throw( _com_error );
operator IUnknown*( ) const throw( _com_error );

二:

CString->TCHAR*的转化可以用函数GetBuff()

函数原型为:LPTSTR GetBuffer( int nMinBufLength );
CString str(“CString”);
TCHAR* szMsg = new TCHAR[100];
//其参数为CString字符串的长度
szMsg = str.GetBuffer(str.GetLength());
str.ReleaseBuffer();
delete []szMsg;
szMsg = NULL;

TCHAR*->CString的转化

TCHAR szTchar[18] = L”TCHAR”;
CString str;
str.Format(_T(“%s”),szTchar);

CString和string的互相转换
CString->std::string 例子:

 

CString strMfc=”test”;

std::string strStl;

strStl=strMfc.GetBuffer(0);

std::string->CString 例子:

CString strMfc;

std::string strStl=”test”;

strMfc=strStl.c_str();

对有关数据类型转换的整理

int i = 100;
long l = 2001;
float f=300.2;
double d=12345.119;
char username[]=”程佩君”;
char temp[200];
char *buf;
CString str;
_variant_t v1;
_bstr_t v2;

一、其它数据类型转换为字符串

  • 短整型(int)
    itoa(i,temp,10);///将i转换为字符串放入temp中,最后一个数字表示十进制
    itoa(i,temp,2); ///按二进制方式转换
  • 长整型(long)
    ltoa(l,temp,10);
  • 浮点数(float,double)
    用fcvt可以完成转换,这是MSDN中的例子:
    int decimal, sign;
    char *buffer;
    double source = 3.1415926535;
    buffer = _fcvt( source, 7, &decimal, &sign );
    运行结果:source: 3.1415926535 buffer: ‘31415927′ decimal: 1 sign: 0
    decimal表示小数点的位置,sign表示符号:0为正数,1为负数
  • CString变量
    str = “2008北京奥运”;
    buf = (LPSTR)(LPCTSTR)str;
  • BSTR变量
    BSTR bstrValue = ::SysAllocString(L”程序员”);
    char * buf = _com_util::ConvertBSTRToString(bstrValue);
    SysFreeString(bstrValue);
    AfxMessageBox(buf);
    delete(buf);
  • CComBSTR变量
    CComBSTR bstrVar(“test”);
    char *buf = _com_util::ConvertBSTRToString(bstrVar.m_str);
    AfxMessageBox(buf);
    delete(buf);
  • _bstr_t变量
    _bstr_t类型是对BSTR的封装,因为已经重载了=操作符,所以很容易使用
    _bstr_t bstrVar(“test”);
    const char *buf = bstrVar;///不要修改buf中的内容
    AfxMessageBox(buf);
  • 通用方法(针对非COM数据类型)
    用sprintf完成转换

     

    char buffer[200]; char c = '1'; int i = 35; long j = 1000; float f = 1.7320534f; sprintf( buffer, "%c",c); sprintf( buffer, "%d",i); sprintf( buffer, "%d",j); sprintf( buffer, "%f",f);
    

二、字符串转换为其它数据类型
strcpy(temp,”123″);

  • 短整型(int)
    i = atoi(temp);
  • 长整型(long)
    l = atol(temp);
  • 浮点(double)
    d = atof(temp);
  • CString变量
    CString name = temp;
  • BSTR变量
    BSTR bstrValue = ::SysAllocString(L”程序员”);
    …///完成对bstrValue的使用
    SysFreeString(bstrValue);
  • CComBSTR变量
    CComBSTR类型变量可以直接赋值
    CComBSTR bstrVar1(“test”);
    CComBSTR bstrVar2(temp);
  • _bstr_t变量
    _bstr_t类型的变量可以直接赋值
    _bstr_t bstrVar1(“test”);
    _bstr_t bstrVar2(temp);

三、其它数据类型转换到CString
使用CString的成员函数Format来转换,例如:

  • 整数(int)
    str.Format(“%d”,i);
  • 浮点数(float)
    str.Format(“%f”,i);
  • 字符串指针(char *)等已经被CString构造函数支持的数据类型可以直接赋值
    str = username;
  • 对于Format所不支持的数据类型,可以通过上面所说的关于其它数据类型转化到char *的方法先转到char *,然后赋值给CString变量。

四、BSTR、_bstr_t与CComBSTR

  • CComBSTR 是ATL对BSTR的封装,_bstr_t是C++对BSTR的封装,BSTR是32位指针,但并不直接指向字串的缓冲区。
    char *转换到BSTR可以这样:
    BSTR b=_com_util::ConvertStringToBSTR(“数据”);///使用前需要加上comutil.h和comsupp.lib
    SysFreeString(bstrValue);
    反之可以使用
    char *p=_com_util::ConvertBSTRToString(b);
    delete p;
    具体可以参考一,二段落里的具体说明。

     

    CComBSTR与_bstr_t对大量的操作符进行了重载,可以直接进行=,!=,==等操作,所以使用非常方便。
    特别是_bstr_t,建议大家使用它。

五、VARIANT 、_variant_t 与 COleVariant

  • VARIANT的结构可以参考头文件VC98/Include/OAIDL.H中关于结构体tagVARIANT的定义。
    对于VARIANT变量的赋值:首先给vt成员赋值,指明数据类型,再对联合结构中相同数据类型的变量赋值,举个例子:
    VARIANT va;
    int a=2001;
    va.vt=VT_I4;///指明整型数据
    va.lVal=a; ///赋值
  • _variant_t是VARIANT的封装类,其赋值可以使用强制类型转换,其构造函数会自动处理这些数据类型。
    使用时需加上#include <comdef.h>
    例如:
    long l=222;
    ing i=100;
    _variant_t lVal(l);
    lVal = (long)i;
  • COleVariant的使用与_variant_t的方法基本一样,请参考如下例子:
    COleVariant v3 = “字符串”, v4 = (long)1999;
    CString str =(BSTR)v3.pbstrVal;
    long i = v4.lVal;

     

    //

  • 本主题演示如何将各种 C++ 字符串类型转换为其他字符串。可以转换的字符串类型包括 char *wchar_t*_bstr_tCComBSTRCStringbasic_stringSystem.String。在所有情况下,在将字符串转换为新类型时,都会创建字符串的副本。对新字符串进行的任何更改都不会影响原始字符串,反之亦然。

    从 char * 转换

    示例

    说明

    此示例演示如何从 char * 转换为上面列出的其他字符串类型。

    // convert_from_char.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    
    using namespace std;
    using namespace System;
    
    int main()
    {
        char *orig = "Hello, World!";
        cout << orig << " (char *)" << endl;
    
        // Convert to a wchar_t*
        size_t origsize = strlen(orig) + 1;
        const size_t newsize = 100;
        size_t convertedChars = 0;
        wchar_t wcstring[newsize];
        mbstowcs_s(&convertedChars, wcstring, origsize, orig, _TRUNCATE);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(orig);
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr(orig);
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a CString
        CString cstring(orig);
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a basic_string
        string basicstring(orig);
        basicstring += " (basic_string)";
        cout << basicstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String(orig);
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (_bstr_t)
    Hello, World! (CComBSTR)
    Hello, World! (CString)
    Hello, World! (basic_string)
    Hello, World! (System::String)
    

    从 wchar_t * 转换

    示例

    说明

    此示例演示如何从 wchar_t * 转换为上面列出的其他字符串类型。

    // convert_from_wchar_t.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    
    using namespace std;
    using namespace System;
    
    int main()
    {
        wchar_t *orig = L"Hello, World!";
        wcout << orig << L" (wchar_t *)" << endl;
    
        // Convert to a char*
        size_t origsize = wcslen(orig) + 1;
        const size_t newsize = 100;
        size_t convertedChars = 0;
        char nstring[newsize];
        wcstombs_s(&convertedChars, nstring, origsize, orig, _TRUNCATE);
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(orig);
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr(orig);
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a CString
        CString cstring(orig);
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a basic_string
        wstring basicstring(orig);
        basicstring += L" (basic_string)";
        wcout << basicstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String(orig);
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (wchar_t *)
    Hello, World! (char *)
    Hello, World! (_bstr_t)
    Hello, World! (CComBSTR)
    Hello, World! (CString)
    Hello, World! (basic_string)
    Hello, World! (System::String)
    

    从 _bstr_t 转换

    示例

    说明

    此示例演示如何从 _bstr_t 转换为上面列出的其他字符串类型。

    // convert_from_bstr_t.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    
    using namespace std;
    using namespace System;
    
    int main()
    {
        _bstr_t orig("Hello, World!");
        wcout << orig << " (_bstr_t)" << endl;
    
        // Convert to a char*
        const size_t newsize = 100;
        char nstring[newsize];
        strcpy_s(nstring, (char *)orig);
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a wchar_t*
        wchar_t wcstring[newsize];
        wcscpy_s(wcstring, (wchar_t *)orig);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr((char *)orig);
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a CString
        CString cstring((char *)orig);
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a basic_string
        string basicstring((char *)orig);
        basicstring += " (basic_string)";
        cout << basicstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String((char *)orig);
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (_bstr_t)
    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (CComBSTR)
    Hello, World! (CString)
    Hello, World! (basic_string)
    Hello, World! (System::String)
    

    从 CComBSTR 转换

    示例

    说明

    此示例演示如何从 CComBSTR 转换为上面列出的其他字符串类型。

    // convert_from_ccombstr.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    #include "vcclr.h"
    
    using namespace std;
    using namespace System;
    using namespace System::Runtime::InteropServices;
    
    int main()
    {
        CComBSTR orig("Hello, World!");
        CW2A printstr(orig);
        cout << printstr << " (CComBSTR)" << endl;
    
        // Convert to a char*
        const size_t newsize = 100;
        char nstring[newsize];
        CW2A tmpstr1(orig);
        strcpy_s(nstring, tmpstr1);
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a wchar_t*
        wchar_t wcstring[newsize];
        wcscpy_s(wcstring, orig);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(orig);
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CString
        CString cstring(orig);
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a basic_string
        wstring basicstring(orig);
        basicstring += L" (basic_string)";
        wcout << basicstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String(orig);
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (CComBSTR)
    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (_bstr_t)
    Hello, World! (CString)
    Hello, World! (basic_string)
    Hello, World! (System::String)
    

    从 CString 转换

    示例

    说明

    此示例演示如何从 CString 转换为上面列出的其他字符串类型。

    // convert_from_cstring.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    
    using namespace std;
    using namespace System;
    
    int main()
    {
        CString orig("Hello, World!");
        wcout << orig << " (CString)" << endl;
    
        // Convert to a char*
        const size_t newsize = 100;
        char nstring[newsize];
        strcpy_s(nstring, orig);
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a wchar_t*
        // You must first convert to a char * for this to work.
        size_t origsize = strlen(orig) + 1;
        size_t convertedChars = 0;
        wchar_t wcstring[newsize];
        mbstowcs_s(&convertedChars, wcstring, origsize, orig, _TRUNCATE);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(orig);
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr(orig);
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a basic_string
        string basicstring(orig);
        basicstring += " (basic_string)";
        cout << basicstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String(orig);
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (CString)
    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (_bstr_t)
    Hello, World! (CComBSTR)
    Hello, World! (basic_string)
    Hello, World! (System::String)
    

    从 basic_string 转换

    示例

    说明

    此示例演示如何从 basic_string 转换为上面列出的其他字符串类型。

    // convert_from_basic_string.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    
    using namespace std;
    using namespace System;
    
    int main()
    {
        string orig("Hello, World!");
        cout << orig << " (basic_string)" << endl;
    
        // Convert to a char*
        const size_t newsize = 100;
        char nstring[newsize];
        strcpy_s(nstring, orig.c_str());
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a wchar_t*
        // You must first convert to a char * for this to work.
        size_t origsize = strlen(orig.c_str()) + 1;
        size_t convertedChars = 0;
        wchar_t wcstring[newsize];
        mbstowcs_s(&convertedChars, wcstring, origsize, orig.c_str(), _TRUNCATE);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(orig.c_str());
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr(orig.c_str());
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a CString
        CString cstring(orig.c_str());
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a System::String
        String ^systemstring = gcnew String(orig.c_str());
        systemstring += " (System::String)";
        Console::WriteLine("{0}", systemstring);
        delete systemstring;
    }
    

    输出

    Hello, World! (basic_string)
    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (_bstr_t)
    Hello, World! (CComBSTR)
    Hello, World! (CString)
    Hello, World! (System::String)
    

    从 System::String 转换

    示例

    说明

    此示例演示如何从 System.String 转换为上面列出的其他字符串类型。

    // convert_from_system_string.cpp
    // compile with /clr /link comsuppw.lib
    
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    
    #include "atlbase.h"
    #include "atlstr.h"
    #include "comutil.h"
    #include "vcclr.h"
    
    using namespace std;
    using namespace System;
    using namespace System::Runtime::InteropServices;
    
    int main()
    {
        String ^orig = gcnew String("Hello, World!");
        Console::WriteLine("{0} (System::String)", orig);
    
        pin_ptr<const wchar_t> wch = PtrToStringChars(orig);
    
        // Convert to a char*
        size_t origsize = wcslen(wch) + 1;
        const size_t newsize = 100;
        size_t convertedChars = 0;
        char nstring[newsize];
        wcstombs_s(&convertedChars, nstring, origsize, wch, _TRUNCATE);
        strcat_s(nstring, " (char *)");
        cout << nstring << endl;
    
        // Convert to a wchar_t*
        wchar_t wcstring[newsize];
        wcscpy_s(wcstring, wch);
        wcscat_s(wcstring, L" (wchar_t *)");
        wcout << wcstring << endl;
    
        // Convert to a _bstr_t
        _bstr_t bstrt(wch);
        bstrt += " (_bstr_t)";
        cout << bstrt << endl;
    
        // Convert to a CComBSTR
        CComBSTR ccombstr(wch);
        if (ccombstr.Append(L" (CComBSTR)") == S_OK)
        {
            CW2A printstr(ccombstr);
            cout << printstr << endl;
        }
    
        // Convert to a CString
        CString cstring(wch);
        cstring += " (CString)";
        cout << cstring << endl;
    
        // Convert to a basic_string
        wstring basicstring(wch);
        basicstring += L" (basic_string)";
        wcout << basicstring << endl;
    
        delete orig;
    }
    

    输出

    Hello, World! (System::String)
    Hello, World! (char *)
    Hello, World! (wchar_t *)
    Hello, World! (_bstr_t)
    Hello, World! (CComBSTR)
    Hello, World! (CString)
    Hello, World! (basic_string)
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值