CComBSTR::Attach
Připojí BSTR se CComBSTR objektu nastavením m_str člen src.
void Attach(
BSTR src
) throw( );
Parametry
- src
[v] BSTR Připojit k objektu.
Poznámky
Této metodě neprojde běžným wide znakový řetězec.Kompilátor nemůže zachytit chybu a spustit, když dojde k chybám.
[!POZNÁMKA]
Tato metoda bude uplatnit, pokud m_str je non-NULL.
Příklad
// 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;
}
Požadavky
Záhlaví: atlbase.h