CComBSTR::Attach
Joint BSTR à l'objet d' CComBSTR en définissant m_strsrc aumembre.
void Attach(
BSTR src
) throw( );
Paramètres
- src
[in] BSTR à attacher à l'objet.
Notes
Ne passez pas une chaîne à caractères larges ordinaire à cette méthode.Le compilateur ne peut pas intercepter l'erreur et les erreurs d'exécution se produisent.
[!REMARQUE]
Cette méthode affirmera si m_str estNULLnon.
Exemple
// STDMETHOD(BSTRToUpper)(/*[in, out]*/ BSTR bstrConv);
STDMETHODIMP InplaceBSTRToUpper(BSTR bstrConv)
{
// Assign bstrConv to m_str member of CComBSTR
CComBSTR bstrTemp;
bstrTemp.Attach(bstrConv);
// Make sure BSTR is not NULL string
if (!bstrTemp)
return E_POINTER;
// Make string uppercase
HRESULT hr;
hr = bstrTemp.ToUpper();
if (hr != S_OK)
return hr;
// Set m_str to NULL, so the BSTR is not freed
bstrTemp.Detach();
return S_OK;
}
Configuration requise
Header: atlbase.h