共用方式為


CComBSTR::AppendBSTR

附加至指定的 BSTRm_str

HRESULT AppendBSTR(
   BSTR p 
) throw( );

參數

  • p
    [in] 附加的 BSTR

傳回值

在成功S_OK ,或任何標準 HRESULT 錯誤值。

備註

不要使用一般字串指派至這個方法。編譯器無法攔截錯誤,並執行時會發生錯誤。

範例

CComBSTR bstrPre(OLESTR("Hello "));
CComBSTR bstrSuf(OLESTR("World!"));
HRESULT hr;

// Appends "World!" to "Hello "
hr = bstrPre.AppendBSTR(bstrSuf);

// Displays a message box with text "Hello World!"
::MessageBox(NULL, CW2CT(bstrPre), NULL, MB_OK);   

需求

Header: atlbase.h

請參閱

參考

CComBSTR 類別

CComBSTR::Append

CComBSTR::operator +=

概念

ATL 和 MFC 字串轉換巨集