共用方式為


CComBSTR::Append

附加 lpsz 或 bstrSrc 的 BSTR 成員至 m_str

HRESULT Append(
   const CComBSTR& bstrSrc 
) throw( );
HRESULT Append(
   wchar_t ch
) throw( );
HRESULT Append(
   char ch
) throw( );
HRESULT Append(
   LPCOLESTR lpsz 
) throw( );
HRESULT Append(
   LPCSTR lpsz 
) throw( );
HRESULT Append(
   LPCOLESTR lpsz,
   int nLen 
) throw( );

參數

  • bstrSrc
    [in] 附加的。 CComBSTR 物件。

  • ch
    [in] 附加的字元。

  • lpsz
    [in] 以零結束的字串附加至。您可以 LPCOLESTR 多載將 Unicode 字串或 ANSI 字串傳遞 LPCSTR 版本。

  • nLen
    [in] 字元數目從附加的 lpsz 的。

傳回值

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

備註

ANSI 字串會轉換成附加的 Unicode。

範例

enum { urlASP, urlHTM, urlISAPI } urlType;
urlType = urlASP;

CComBSTR bstrURL = OLESTR("http://SomeSite/");
CComBSTR bstrDEF = OLESTR("/OtherSite");
CComBSTR bstrASP = OLESTR("default.asp");

CComBSTR bstrTemp;
HRESULT hr;

switch (urlType)
{
case urlASP:
   // bstrURL is 'http://SomeSite/default.asp'
   hr = bstrURL.Append(bstrASP);
   break;

case urlHTM:
   // bstrURL is 'http://SomeSite/default.htm'
   hr = bstrURL.Append(OLESTR("default.htm"));
   break;

case urlISAPI:
   // bstrURL is 'http://SomeSite/default.dll?func'
   hr = bstrURL.Append(OLESTR("default.dll?func"));
   break;

default:
   // bstrTemp is 'http://'
   hr = bstrTemp.Append(bstrURL, 7);
   // bstrURL is 'http://OtherSite'
   if (hr == S_OK)
       hr = bstrTemp.Append(bstrDEF);
   bstrURL = bstrTemp;

   break;
}

需求

Header: atlbase.h

請參閱

參考

CComBSTR 類別

CComBSTR::AppendBSTR

CComBSTR::operator +=